﻿:root {
    --brand: #E6004D;
    --brand-dark: #B8003E;
    --ink: #141414;
    --gray-text: #7c7c7c;
    --outline: #3a3a3a;
    --card-radius: 40px;
}

* {
    box-sizing: border-box;
}
#infinite div.highway-barrier::after{
    background:none!important;
}
#infinite div.highway-barrier::before {
    background: none !important;
}
    /* Boxed Layout */
    .boxed-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.homeSpecific {
    display: block !important;
}
.videoRowContainer{
    width:100%!important;
}
/* Banner Slider Section */
.banner-section {
    padding: 30px 20px;
}

.banner-slider {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 2px solid #e0e0e0;
}

.carousel-inner {
    border-radius: 30px;
}

.carousel-item {
    padding: 0;
    height: 250px;
}

    .carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* Carousel Indicators */
.carousel-indicators {
    bottom: 20px;
}

    .carousel-indicators li {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: #ccc;
        border: none;
        margin: 0 5px;
    }

        .carousel-indicators li.active {
            background-color: #2196F3;
        }

/* Responsive */
@media (max-width: 768px) {
    .videoRowContainer {
        width: 100% !important;
    }
    .carousel-item {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .carousel-item {
        height: 200px;
    }
}

/* Features Section */
.features-section {
    padding: 0px 20px 20px;
    text-align: center;
    width: 100vw;
    max-width: 1200px;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: auto;
}

.section-image {
    margin-bottom: 20px;
}

    .section-image img {
        max-width: 100px;
        height: auto;
    }

.section-title {
    font-size: 28px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 16px;
    color: black;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.feature-item {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: default;
    aspect-ratio: 1/1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
}

    .feature-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        border-color: #2196F3;
    }
.feature-icon {
    width: clamp(34px, 42%, 70px); /* scales with the card */
    aspect-ratio: 1/1;
    height: auto;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
    .feature-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }
.feature-title {
    font-size: clamp(10px, 1.05vw, 14px);
    color: #333;
    margin: 0;
    line-height: 1.55;
    white-space: pre-line;
}

.feature-desc {
    font-size: 12px;
    color: black;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 991px) {
    .features-grid {
        grid-template-columns: repeat(3,1fr);
        gap: 16px;
    }

    .feature-title {
        font-size: clamp(11px, 1.9vw, 14px);
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: repeat(3,1fr);
        gap: 10px;
    }

    .feature-item {
        padding: 12px 6px;
        border-radius: 10px;
        gap: 8px;
    }

    .feature-icon {
        width: clamp(38px, 52%, 70px);
    }

    .feature-title {
        font-size: clamp(9px, 2.5vw, 11px);
        line-height: 1.45;
    }

    .feature-desc {
        font-size: 11px;
    }
}
@media (max-width: 400px) {
    .features-grid {
        gap: 8px;
    }

    .feature-item {
        padding: 9px 4px;
        border-radius: 9px;
        gap: 6px;
    }

    .feature-icon {
        width: clamp(34px, 50%, 70px);
    }

    .feature-title {
        font-size: 8.5px;
        line-height: 1.4;
    }
}
/* CRM Introduction Section */
.crm-section {
    padding: 30px 20px;
}

.crm-badge {
    display: inline-flex;
    align-items: center;
    color: #e91e63;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

    .crm-badge::before {
        content: '';
        width: 40px;
        height: 3px;
        background-color: #e91e63;
        margin-left: 10px;
        border-radius: 2px;
    }

.crm-heading {
    font-size: 26px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
}

.crm-description {
    font-size: 14px;
    color: black;
    line-height: 2;
    text-align: justify;
    max-width: 900px;
}
/* CRM Introduction Section - Updated */
.crm-section {
    padding: 30px 20px;
    width: 100vw;
    max-width: 1200px;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: auto;
}

.crm-sub-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 15px;
}

    .crm-sub-header span {
        color: #e91e63;
        font-size: 16px;
        font-weight: 600;
        margin-right: 15px;
    }

    .crm-sub-header::after {
        content: '';
        width: 50px;
        height: 3px;
        background-color: #e91e63;
        border-radius: 2px;
    }

.crm-heading {
    font-size: 26px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: right;
}

.crm-description {
    font-size: 14px;
    color: black;
    line-height: 2;
    text-align: justify;
    max-width: 900px;
    margin-right: auto;
}

/* CRM Card with curve */
.crm-card-wrapper {
    margin-top: 40px;
    position: relative;
    padding-left: 0;
}

.crm-card {
    background: #fff;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    overflow: visible;
}

    .crm-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: -200px;
        width: 400px;
        height: 100%;
        background: #fff;
        border-radius: 50%;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        z-index: -1;
    }

.crm-card-header {
    background: linear-gradient(135deg, #e91e63, #c2185b);
    color: #fff;
    padding: 15px 30px;
    border-radius: 15px;
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 30px;
}

.crm-card-title {
    font-size: 22px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: right;
}

.crm-card-text {
    font-size: 14px;
    color: black;
    line-height: 2;
    text-align: justify;
    margin-bottom: 30px;
}

.crm-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.btn-demo {
    background-color: #444;
    color: #fff;
    padding: 12px 30px;
    border-radius: 10px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
}

    .btn-demo:hover {
        background-color: #333;
        color: #fff;
    }

.btn-product {
    background-color: #e91e63;
    color: #fff;
    padding: 12px 30px;
    border-radius: 10px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
}

    .btn-product:hover {
        background-color: #c2185b;
        color: #fff;
    }

/* SVG Container */
.crm-circle-svg {
    position: absolute;
    top: 50%;
    right: -180px;
    transform: translateY(-50%);
    width: 380px;
    height: 380px;
    z-index: 2;
}

    .crm-circle-svg svg {
        width: 100%;
        height: 100%;
    }

/* Responsive */
@media (max-width: 991px) {
    .crm-card {
        margin-left: 0;
        padding: 25px;
    }

        .crm-card::before {
            display: none;
        }

    .crm-circle-svg {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 300px;
        height: 300px;
        margin: 30px auto 0;
    }

    .crm-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .crm-heading {
        font-size: 20px;
    }

    .crm-card-header {
        font-size: 15px;
        padding: 12px 20px;
    }

    .crm-card-title {
        font-size: 18px;
    }

    .crm-circle-svg {
        width: 250px;
        height: 250px;
    }
}

/* Success Stories Section */
.stories-section {
    width: 100vw;
    max-width: 1200px;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: auto;
    padding: 15px 20px;
}

.stories-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
    direction: ltr;
}

.stories-sub-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

    .stories-sub-header span {
        color: #e91e63;
        font-size: 16px;
        font-weight: 600;
        margin-right: 15px;
    }

    .stories-sub-header::after {
        content: '';
        width: 50px;
        height: 3px;
        background-color: #e91e63;
        border-radius: 2px;
    }

.stories-title {
    font-size: 22px;
    font-weight: bold;
    color: #2c3e50;
}

.btn-view-all {
    background-color: rgb(230, 0, 77);
    border-color: rgb(230, 0, 77);
    color: white;
    padding: 12px 25px;
    border-radius: 12px;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
    border: none;
    font-weight: bold;
}

    .btn-view-all:hover {
        filter: brightness(1.08);
        color: #fff;
    }

    .btn-view-all i {
        margin-right: 8px;
    }

/* Stories Cards Container */
.stories-container {
    display: flex;
    gap: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
    padding-bottom: 20px;
    overflow-x: hidden;
}

    .stories-container::-webkit-scrollbar {
        height: 6px;
    }

    .stories-container::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .stories-container::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 10px;
    }

        .stories-container::-webkit-scrollbar-thumb:hover {
            background: #999;
        }

.story-card {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 280px;
    scroll-snap-align: start;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
}

    .story-card:hover {
/*        transform: translateY(-8px);
*/        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

.story-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #f5f5f5;
}

    .story-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s;
    }

.story-card:hover .story-thumbnail img {
/*    transform: scale(1.05);
*/}

.story-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(233, 30, 99, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    transition: transform 0.3s;
}

.story-card:hover .story-play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.story-content {
    padding: 25px;
}

.story-company {
    font-size: 18px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 12px;
    text-align: center;
}

.story-description {
    font-size: 13px;
    color: black;
    line-height: 1.8;
    text-align: center;
}

/* Responsive */
@media (max-width: 991px) {
    .stories-container .story-card:nth-child(1) {
        order: 2;
    }
    /* IBShop */
    .stories-container .story-card:nth-child(2) {
        order: 0;
    }
    /* Digikala first */
    .stories-container .story-card:nth-child(3) {
        order: 1;
    }
    /* Parskhazar */
    .stories-container {
        overflow-x: auto;
        padding: 0 20px 20px;
        margin: 0 -20px; /* bleed to card edges */
        scroll-padding-left: 20px;
    }

    .story-card {
        flex: 0 0 calc(50% - 10px);
        min-width: 0;
    }
    .stories-container {
        scrollbar-width: none;
    }

        .stories-container::-webkit-scrollbar {
            display: none;
        }
}

@media (max-width: 576px) {
    .stories-header {
        flex-direction: column-reverse;
        align-items: flex-end;
        gap: 16px;
    }

    .btn-view-all {
        align-self: flex-end;
    }

    .stories-title {
        font-size: 20px;
    }

    .stories-container {
        gap: 15px;
        padding: 0 16px 20px;
        margin: 0 0px;
        scroll-padding-left: 16px;
    }

    .story-card {
        flex: 0 0 75%;
        min-width: 0;
    }

    .story-thumbnail {
        height: 160px;
    }

    .story-content {
        padding: 20px;
    }

    .story-company {
        font-size: 16px;
    }

    .story-description {
        font-size: 12px;
    }
}

/* Demo Request Form Section */
.demo-section {
    padding: 30px 20px;
    width: 100vw;
    max-width: 1200px;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: auto;
    padding-top: 5px;
}

.demo-card {
    background: #f9f9f9;
    border-radius: 30px;
    padding: 25px 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: solid 0.1px #e3e3e3;
}

.demo-title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: #2196F3;
    margin-bottom: 15px;
}

.demo-subtitle {
    text-align: center!important;
    font-size: 15px;
    color: black;
    margin-bottom: 35px;
}

.demo-form {
    display: flex;
    gap: 15px;
    align-items: stretch;
    flex-wrap: wrap;
}

.demo-input-group {
    flex: 1;
    min-width: 180px;
}

.demo-input {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 14px;
    background: #fff;
    color: #333;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}

    .demo-input::placeholder {
        color: #aaa;
    }

    .demo-input:focus {
        border-color: #2196F3;
        box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
    }

.demo-submit-btn {
    background-color: rgb(230, 0, 77);
    color: #fff;
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    min-width: 180px;
}

    .demo-submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    }
.demo-alert {
    display: none;
    margin-top: 22px;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    line-height: 1.8;
}

    .demo-alert.is-visible {
        display: block;
    }

    .demo-alert.is-success {
        background: #e8f5e9;
        border: 1px solid #a5d6a7;
        color: #2e7d32;
    }

    .demo-alert.is-error {
        background: #fdecea;
        border: 1px solid #f5b7b1;
        color: #c0392b;
    }

.demo-submit-btn:disabled {
    opacity: .6;
    cursor: not-allowed;
    transform: none;
}

    .demo-submit-btn:disabled:hover {
        background: linear-gradient(135deg,#e91e63,#c2185b);
        transform: none;
        box-shadow: none;
    }
/* Responsive */
@media (max-width: 991px) {
    .demo-card {
        padding: 40px 25px;
    }

    .demo-form {
        flex-wrap: wrap;
    }

    .demo-input-group {
        min-width: calc(50% - 10px);
    }

    .demo-submit-btn {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 576px) {
    .demo-card {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .demo-title {
        font-size: 22px;
    }

    .demo-subtitle {
        font-size: 13px;
    }

    .demo-input-group {
        min-width: 100%;
    }

    .demo-input {
        padding: 14px 16px;
    }
}

/*----- circle ----*/

/* ---------- Card ---------- */
.crm-card {
    background: #ffffff;
    border-radius: 40px 22% 22% 40px / 40px 50% 50% 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,.28);
    padding: 48px 5% 48px 3%;
    overflow: hidden;
}

.crm-card-inner {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* ---------- Left panel ---------- */
.left-panel {
    direction: rtl;
    text-align: right;
    flex: 0 0 44%;
    max-width: 44%;
    padding-left: 20px;
}

#leftPanelContent {
}

.panel-badge {
    display: inline-block;
    width: 100%;
    background: var(--brand);
    color: #fff;
    font-weight: 700;
    font-size: 19px;
    padding: 15px 26px;
    border-radius: 12px;
    margin-bottom: 26px;
    transition: background-color .3s ease;
}

.panel-title {
    color: #0f0f0f;
    font-weight: 800;
    font-size: 23px;
    line-height: 1.6;
    margin: 0 0 18px;
}

.panel-desc {
    color: black;
    font-size: 15.5px;
    line-height: 2.05;
    margin: 0 0 32px;
    min-height: 145px;
}

.panel-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-outline-custom {
    font-family: inherit;
    background: #fff;
    border: 1.5px solid var(--outline);
    color: var(--outline);
    font-weight: 700;
    font-size: 15px;
    padding: 13px 30px;
    border-radius: 10px;
    transition: .2s ease;
}

    .btn-outline-custom:hover {
        background: var(--outline);
        color: #fff;
    }

.btn-solid-custom {
    font-family: inherit;
    background: var(--brand);
    border: 1.5px solid var(--brand);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 13px 30px;
    border-radius: 10px;
    transition: background-color .3s ease, border-color .3s ease;
}

    .btn-solid-custom:hover {
        filter: brightness(1.08);
    }

/* ---------- Right panel / circle ---------- */
.right-panel {
    flex: 0 0 54%;
    max-width: 54%;
    display: flex;
    justify-content: center;
}

.circle-wrap {
    position: relative;
    width: 100%;
    max-width: 480px;
    /*aspect-ratio:1/1;*/
}

    .circle-wrap svg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        overflow: visible;
    }

.segment {
    fill: #ffffff;
    stroke: #e7e7e7;
    stroke-width: 1.5;
    cursor: pointer;
    transition: fill .22s ease, stroke .22s ease, filter .22s ease, transform .22s ease;
    /*transform-box:fill-box;*/
    transform-origin: 50% 50%;
}

    .segment.is-active {
        stroke: transparent;
        filter: drop-shadow(0 10px 16px rgba(0,0,0,.22));
        transform: scale(1.035);
    }

    .segment:focus {
        outline: none;
    }

    .segment:focus-visible {
        stroke: #111;
        stroke-width: 2.5;
    }

/* segment labels (icon + text), absolutely positioned over the svg */
.seg-label {
    position: absolute;
    transform: translate(-50%,-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    user-select: none;
    line-height: 1.25;
    transition: transform .22s ease, color .22s ease;
    color: #232323;
}

    .seg-label:focus {
        outline: none;
    }

    .seg-label.is-active {
        color: #ffffff;
        transform: translate(-50%,-50%) scale(1.06);
    }

    .seg-label.outer-label .seg-icon {
        width: 24px;
        height: 24px;
        margin-bottom: 5px;
    }

        .seg-label.outer-label .seg-icon svg {
            width: 100%;
            height: 100%;
            stroke: currentColor;
            fill: none;
            stroke-width: 1.7;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: stroke .22s ease;
        }

    .seg-label.outer-label .fa-name {
        font-size: 12.5px;
        font-weight: 700;
        color: inherit;
    }

    .seg-label.outer-label .en-name {
        font-size: 10px;
        letter-spacing: .2px;
        color: #9b9b9b;
        margin-top: 2px;
        direction: ltr;
        transition: color .22s ease;
    }

    .seg-label.outer-label.is-active .en-name {
        color: rgba(255,255,255,.85);
    }

    .seg-label.inner-label .fa-name {
        font-size: 14.5px;
        font-weight: 700;
    }

/* center customer node */
.center-label {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 23%;
    /*aspect-ratio:1/1;*/
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(230,0,77,.35);
    transition: transform .2s ease, box-shadow .2s ease;
}

    .center-label:hover, .center-label.is-active {
        transform: translate(-50%,-50%) scale(1.05);
    }

    .center-label svg {
        width: 26%;
        height: 26%;
        stroke: #fff;
        fill: none;
        stroke-width: 1.7;
        stroke-linecap: round;
        stroke-linejoin: round;
        margin-bottom: 6%;
    }

    .center-label span {
        font-size: 15px;
        font-weight: 800;
    }

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .crm-card {
        border-radius: 32px;
        padding: 34px 6%;
    }

    .crm-card-inner {
        flex-direction: column;
    }

    .left-panel, .right-panel {
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 0;
    }

    .left-panel {
        order: 2;
        margin-top: 36px;
    }

    .right-panel {
        order: 1;
    }

    .circle-wrap {
        max-width: 420px;
    }

    .panel-desc {
        min-height: 0;
    }
}

@media (max-width: 480px) {
    .crm-section {
        padding: 0px 12px 35px;
    }
    .industry-section {
        padding: 0px 12px 35px;
    }
    .demo-section {
        padding: 0px 12px 35px;
    }
    .page-section {
        padding: 0px 12px 35px;
    }
    .panel-title {
        font-size: 20px;
    }

    .seg-label.outer-label .fa-name {
        font-size: 11px;
    }

    .seg-label.outer-label .en-name {
        font-size: 8.5px;
    }

    .seg-label.inner-label .fa-name {
        font-size: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .segment, .seg-label, .center-label {
        transition: none !important;
    }
}



/*----- circle ----*/

/* Industry Solutions Section */
.industry-section {
    padding: 30px 20px;
    width: 100vw;
    max-width: 1200px;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: auto;
}

/* Part 1 - Header */

    .industry-sub-header span {
        color: #e91e63;
        font-size: 16px;
        font-weight: 600;
        margin-right: 15px;
    }

    .industry-sub-header::after {
        content: '';
        width: 50px;
        height: 3px;
        background-color: #e91e63;
        border-radius: 2px;
    }


/* Part 2 - Tabs Layout */
.industry-tabs-wrapper {
    display: flex;
    gap: 20px;
    margin-top: 35px;
    align-items: stretch; /* was flex-start */
}

.industry-tabs-list {
    width: 270px;
    flex-shrink: 0;
    background: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 12px;
    overflow: hidden; /* clips children to the radius */
}

.industry-tabs-scroll {
    height: 100%;
    overflow-y: auto;
    padding-left: 10px;
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
}

    .industry-tabs-scroll::-webkit-scrollbar {
        width: 6px;
    }

    .industry-tabs-scroll::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .industry-tabs-scroll::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 10px;
    }

.industry-tab {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
    border: 1px solid transparent;
}

    .industry-tab:hover {
        background: #fff;
        border-color: #ddd;
    }

    .industry-tab.active {
        background: #2196F3;
        color: #fff;
    }


    .industry-tab.active i {
        color: #fff;
    }

    .tab-pane.active {
        display: block;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

    .tab-content-image img {
        max-width: 100%;
        height: auto;
        max-height: 200px;
    }

.tab-content-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    font-weight: bold;
    color: #2196F3;
    white-space: nowrap;
}

    .tab-content-features li {
        font-size: 14px;
        color: #333;
        padding: 6px 0;
        display: flex;
        align-items: center;
        font-weight: 600;
    }

        .tab-content-features li::before {
            content: '';
            width: 10px;
            height: 10px;
            background: #e91e63;
            border-radius: 50%;
            margin-left: 12px;
            flex-shrink: 0;
        }

.tab-content-btn {
    direction: ltr;
    float: left;
    display: inline-flex;
    align-items: center;
    background: #f0f4f8;
    color: #2196F3;
    padding: 12px 25px;
    border-radius: 12px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    align-self: flex-start;
    border: 1px solid #e0e0e0;
}

    .tab-content-btn:hover {
        background: #2196F3;
        color: #fff;
    }

    .tab-content-btn i {
        margin-right: 8px;
    }

/* Responsive */
/*@media (max-width: 991px) {
    .industry-tabs-wrapper {
        flex-direction: column;
    }

    .industry-tabs-list {
        width: 100%;
        max-height: 200px;
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 10px;
        padding: 15px;
    }

    .industry-tab {
        flex-shrink: 0;
        margin-bottom: 0;
        white-space: nowrap;
    }

}*/

@media (max-width: 576px) {

    .tab-content-title {
        font-size: 20px;
    }

    .tab-content-image {
        padding: 25px;
    }
}

/* Resources Section */
.resources-section {
    padding: 30px 20px;
}

.resources-card {
    position: relative;
    border-radius: 30px;
    overflow: visible;
    display: flex;
    min-height: 400px;
    background: transparent;
}

/* Blue Static Panel - Now has gradient and sits behind */
.resources-static-panel {
    background: linear-gradient(135deg, #1565C0 0%, #2196F3 40%, #42A5F5 70%, #1976D2 100%);
    width: 350px;
    flex-shrink: 0;
    padding: 40px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 30px;
    margin-right: -60px;
    z-index: 1;
    box-shadow: 0 8px 30px rgba(33, 150, 243, 0.3);
}

    /* Decorative gradient overlay on blue panel */
    .resources-static-panel::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        border-radius: 30px;
        background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.15) 0%, transparent 70%);
        pointer-events: none;
    }

    /* Corner decorations */
    .resources-static-panel::after {
        content: '';
        position: absolute;
        top: 25px;
        right: 25px;
        width: 50px;
        height: 50px;
        border-top: 3px solid rgba(255,255,255,0.4);
        border-right: 3px solid rgba(255,255,255,0.4);
        border-radius: 0 8px 0 0;
        pointer-events: none;
    }

.static-corner-bl {
    position: absolute;
    bottom: 25px;
    left: 25px;
    width: 50px;
    height: 50px;
    border-bottom: 3px solid rgba(255,255,255,0.4);
    border-left: 3px solid rgba(255,255,255,0.4);
    border-radius: 0 0 0 8px;
    pointer-events: none;
}

.resources-static-title {
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.7;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Scrollable Cards Area - Overlaps blue panel */
.resources-scroll-area {
    flex: 1;
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

.resources-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 10px 0;
}

    .resources-slider::-webkit-scrollbar {
        display: none;
    }

.resource-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
    border: 1px solid #f0f0f0;
}

    .resource-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

.resource-thumbnail {
    position: relative;
    height: 170px;
    overflow: hidden;
    background: #f5f5f5;
}

    .resource-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s;
    }

.resource-card:hover .resource-thumbnail img {
    transform: scale(1.05);
}

.resource-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: background 0.3s;
}

.resource-card:hover .resource-play-icon {
    background: rgba(33, 150, 243, 0.85);
}

.resource-content {
    padding: 18px;
}

.resource-title {
    font-size: 15px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 6px;
    line-height: 1.6;
}

.resource-subtitle {
    font-size: 12px;
    color: black;
    line-height: 1.7;
    margin: 0;
}

/* Navigation Arrows */
.resources-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    color: #333;
    font-size: 16px;
}

    .resources-nav-btn:hover {
        background: #2196F3;
        color: #fff;
        border-color: #2196F3;
    }

.resources-nav-prev {
    right: 8px;
}

.resources-nav-next {
    left: 8px;
}

/* Responsive */
@media (max-width: 991px) {
    .resources-card {
        flex-direction: column;
    }

    .resources-static-panel {
        width: 100%;
        margin-right: 0;
        margin-bottom: -30px;
        padding: 35px 20px;
        min-height: 140px;
        border-radius: 30px 30px 0 0;
    }

        .resources-static-panel::before {
            border-radius: 30px 30px 0 0;
        }

    .resources-scroll-area {
        border-radius: 30px;
    }

    .resources-static-title {
        font-size: 24px;
    }

    .resource-card {
        flex: 0 0 240px;
    }
}

@media (max-width: 576px) {
    .resources-static-title {
        font-size: 20px;
    }

    .resource-card {
        flex: 0 0 210px;
    }

    .resource-thumbnail {
        height: 140px;
    }

    .resource-content {
        padding: 14px;
    }

    .resource-title {
        font-size: 13px;
    }

    .resources-scroll-area {
        padding: 20px 15px;
    }
}

/* FAQ & Articles Section */
.info-section {
    width: 100vw;
    max-width: 1200px;
    margin: auto;
    border-radius: 30px;
    padding: 40px;
    border: solid 1px #eaeaea;
}

.info-row {
    display: flex;
    gap: 25px;
}

.info-card {
    background: #fff;
    border-radius: 25px;
    padding: 35px;
    border: solid 1px #eaeaea;
    flex: 1;
}

.info-card-title {
    font-size: 22px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: right;
}

/* FAQ Accordion */
.faq-item {
    border: 1px solid #eee;
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

    .faq-item:hover {
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    cursor: pointer;
    background: #fafafa;
    transition: background 0.3s;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

    .faq-question:hover {
        background: #f0f0f0;
    }

    .faq-question i {
        font-size: 14px;
        color: #666;
        transition: transform 0.3s;
        flex-shrink: 0;
        margin-right: 15px;
    }

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: #2196F3;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
    font-size: 13px;
    color: black;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    background: #fafafa;
    max-height: 200px;
    padding: 0 20px 18px;
}
summary {
    list-style: none;
}

    summary::-webkit-details-marker {
        display: none;
    }

    summary::after {
        content: "⌵";
        float: left; /* because your page is RTL */
        font-size: 20px;
        line-height: 1;
        transition: transform .25s ease;
        color: #555;
    }

details[open] summary::after {
    transform: rotate(180deg);
}
/* Blog Articles List */
.article-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding:10px  18px;
    border: 1px solid #eee;
    border-radius: 14px;
    margin-bottom: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

    .article-item:hover {
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        transform: translateX(-5px);
    }

.article-thumb {
    width: 110px;
    height: 80px;
    border-radius: 12px;
    flex-shrink: 0;
    overflow: hidden;
}

    .article-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.article-content {
    flex: 1;
}

.article-title {
    font-size: 15px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 6px;
    line-height: 1.5;
}

.article-desc {
    font-size: 12px;
    color: black;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .info-row {
        flex-direction: column;
    }

    .info-card {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .info-card-title {
        font-size: 18px;
    }

    .article-item {
        padding: 14px;
    }

    .article-thumb {
        width: 90px;
        height: 65px;
    }

    .article-title {
        font-size: 13px;
    }

    .faq-question {
        font-size: 13px;
        padding: 14px 16px;
    }
}
.video-section {
    padding: 30px 20px;
    width: 100vw;
    max-width: 1200px;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: auto;
    width: 100vw;
    padding: 40px;
}
.bmsdVideoPlayerSection .tbk__title{
    display:none;
}
.bmsdVideoPlayerSection {
    border-radius: 30px;
    padding: 40px;
    border: solid 1px #eaeaea;
}
/* CTA Section */
.cta-section {
    padding: 30px 20px;
}

.cta-banner {
    background: linear-gradient(135deg, #1976D2 0%, #2196F3 50%, #42A5F5 100%);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(33, 150, 243, 0.3);
}

    /* Decorative background shapes */
    .cta-banner::before {
        content: '';
        position: absolute;
        top: -50px;
        right: -50px;
        width: 200px;
        height: 200px;
        border: 2px solid rgba(255,255,255,0.1);
        border-radius: 30px;
        transform: rotate(45deg);
    }

    .cta-banner::after {
        content: '';
        position: absolute;
        bottom: -30px;
        left: -30px;
        width: 150px;
        height: 150px;
        border: 2px solid rgba(255,255,255,0.08);
        border-radius: 20px;
        transform: rotate(30deg);
    }

.cta-decoration-1 {
    position: absolute;
    top: 20px;
    left: 80px;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255,255,255,0.06);
    border-radius: 50%;
}

.cta-decoration-2 {
    position: absolute;
    bottom: 20px;
    right: 100px;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(255,255,255,0.06);
    border-radius: 15px;
    transform: rotate(20deg);
}

.cta-text {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 35px;
    position: relative;
    z-index: 2;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.cta-btn {
    background: #fff;
    color: #1976D2;
    padding: 14px 35px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

    .cta-btn:hover {
        background: #f5f5f5;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    }

.cta-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

    .cta-btn-outline:hover {
        background: #fff;
        color: #1976D2;
    }

/* Responsive */
@media (max-width: 768px) {
    .cta-banner {
        padding: 40px 25px;
        border-radius: 20px;
    }

    .cta-text {
        font-size: 18px;
    }

    .cta-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .cta-text {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 280px;
    }
}
#infoBox {
    padding-top: 15px;
}
#appointment {
    cursor: pointer;
    transform-origin: center;
    transition: transform .25s ease, filter .25s ease;
}

    #appointment.hovered {
        transform: scale(1.05);
        filter: drop-shadow(0 5px 8px rgba(0,0,0,.35));
    }


#infoBox {
    width: 100vw;
    max-width: 1200px;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: auto;
}

/* ================================================
   SHARED SECTION PRIMITIVES
   (replaces the 4 near-identical *-sub-header rules)
   ================================================ */

.page-section {
    width: 100vw;
    max-width: 1200px;
    padding: 30px 20px;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: auto;
    padding-top:5px;
}

.sec-card {
    background: #fff;
    border-radius: 30px;
    padding: 40px;
    border: solid 1px #eaeaea;
    /*    box-shadow: 0 1px 1px rgba(0,0,0,0.06);
*/
}

.sec-eyebrow {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
    direction: rtl;
}

    .sec-eyebrow span {
        color: var(--brand);
        font-size: 15px;
        font-weight: 700;
        margin-right: 15px;
        order: 2;
    }

    .sec-eyebrow::after {
        content: '';
        width: 50px;
        height: 3px;
        background: var(--brand);
        border-radius: 2px;
        order: 1;
    }

.sec-heading {
    font-size: 22px;
    font-weight: bold;
    color: var(--ink);
    margin: 0 0 0px;
    text-align: right;
}

.sec-desc {
    font-size: 14px;
    color: black;
    line-height: 2;
    text-align: justify;
    margin: 0;
}


/* ================================================
   1. INDUSTRY  (shared image, swapping text)
   ================================================ */

.industry-tabs-wrapper {
    display: flex;
    gap: 20px;
    margin-top: 35px;
    align-items: stretch;
}

/* --- tabs list (right) --- */
.industry-tabs-list {
    width: 270px;
    flex-shrink: 0;
    background: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 12px;
    overflow-y: auto;
    max-height: 449px;
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
    min-height: 0;
}

.industry-tabs-list::-webkit-scrollbar {
    width: 6px;
}

    .industry-tabs-list::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .industry-tabs-list::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 10px;
    }

.industry-tab {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    width: 100%;
    padding: 8px 10px;
    margin-bottom: 6px;
    border: 1px solid transparent;
    border-radius: 12px;
    background: transparent;
    font-family: inherit;
    font-size: 14px;
    color: #333;
    text-align: right;
    cursor: pointer;
    transition: all .3s;
    direction: ltr;
}

    .industry-tab:hover {
        background: #fff;
        border-color: #ddd;
    }

    .industry-tab.active {
        background: #2196F3;
        border-color: #2196F3;
        color: #fff;
        box-shadow: 0 4px 12px rgba(33,150,243,.3);
    }

    .industry-tab i {
        font-size: 17px;
        order: 2;
    }

    .industry-tab span {
        direction: rtl;
        order: 1;
    }

/* --- content pane (left) --- */
.industry-pane {
    flex: 1;
    min-width: 0;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 22px;
    display: flex;
    flex-direction: column;
}

/* the ONE shared illustration */
.industry-hero {
    position: relative;
    background: #f4f7fb;
    border-radius: 16px;
    min-height: 125px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 22px;
}

    .industry-hero img {
        width: 100%;
        height: auto;
        max-height: 200px;
        object-fit: contain;
        display: block;
    }

.industry-hero-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 26px;
    font-weight: bold;
    color: #2196F3;
    white-space: nowrap;
    text-align: center;
    pointer-events: none;
}

/* stacked text panes — all in DOM, one shown */
.industry-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 185px;
}

.industry-text {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease;
}

    .industry-text.is-current {
        position: relative;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: flex;
        flex-direction: column;
        flex: 1;
        min-height: 0;
    }

.industry-lead {
    width: 100%;
    font-size: 14px;
    color: black;
    line-height: 2;
    text-align: justify;
    margin: 0 0 18px;
}

.industry-text.is-current .industry-features {
    margin: 0;
    padding-left: 200px; /* reserve space for the CTA */
}
.industry-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    min-width: 0;
}

    .industry-features li {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 10px;
        padding: 5px 0;
        font-size: 14px;
        font-weight: 600;
        color: #333;
        direction: ltr;
    }

        .industry-features li::before {
            content: '';
            width: 9px;
            height: 9px;
            background: var(--brand);
            border-radius: 50%;
            flex-shrink: 0;
            order: 2;
        }


.industry-body-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-top: auto;
}

.industry-tab-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    flex-shrink: 0;
    order: 2;
    transition: filter .3s;
}

.industry-tab.active .industry-tab-icon {
    filter: brightness(0) invert(1);
}

.industry-cta {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: #eef4fb;
    border: 1px solid #e0e8f0;
    border-radius: 12px;
    color: #2196F3;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
    transition: all .3s;
    direction: ltr;
    background: #2196F3;
    color: #fff;
}

    .industry-cta:hover {
        background: #3EAAFF;
        color: #fff;
        border-color: #2196F3;
    }

    .industry-cta i {
        font-size: 13px;
    }


/* ================================================
   2. KNOW / RESOURCES  (4-card scroller)
   ================================================ */

.know-slider {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
    scrollbar-width: none;
}

    .know-slider::-webkit-scrollbar {
        display: none;
    }

.know-card {
    flex: 0 0 calc(25% - 15px);
    min-width: 230px;
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 15px rgba(0,0,0,.06);
    transition: transform .3s, box-shadow .3s;
}

    .know-card:hover {
        box-shadow: 0 10px 28px rgba(0,0,0,.14);
    }

.know-thumb {
    position: relative;
    height: 175px;
    overflow: hidden;
    background: #f2f4f7;
}

    .know-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .3s;
    }


.know-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 48px;
    height: 48px;
    background: rgba(0,0,0,.55);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: background .3s, transform .3s;
}

.know-card:hover .know-play {
    background: rgba(33,150,243,.9);
    transform: translate(-50%,-50%) scale(1.08);
}

.know-body {
    padding: 18px 16px 22px;
    text-align: center;
}

.know-title {
    font-size: 15px;
    font-weight: bold;
    color: var(--ink);
    line-height: 1.7;
    margin: 0 0 6px;
}

.know-sub {
    font-size: 12px;
    color:black;
    line-height: 1.7;
    margin: 0;
    text-align: center !important;
}


/* ================================================
   3. WHY US  (2x2 grid + download btn)
   ================================================ */

.why-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    direction: ltr;
    padding-bottom:15px;
}

    .why-head > div {
        direction: rtl;
    }

    .why-head .sec-heading {
        margin-bottom: 0;
    }

.why-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border: 1px solid #e0e8f0;
    border-radius: 12px;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
    transition: all .3s;
    background: #2196F3;
    color: #fff;
    border-color: #2196F3;
}

    .why-download:hover {
        background: #3EAAFF;
        color: #fff;
        border-color: #2196F3;
    }

.why-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

.why-item {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 18px;
    padding: 26px 24px;
    transition: box-shadow .3s, border-color .3s;
    display: flex;
    align-items: flex-start;
    gap: 22px;
    direction: ltr;
}

    .why-item:hover {
        box-shadow: 0 6px 22px rgba(0,0,0,.08);
        border-color: #ddd;
    }

.why-img {
    order: 2; /* pushed to the left edge in RTL */
    flex: 0 0 96px;
    width: 96px;
    height: 127px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.why-content {
    order: 1;
    flex: 1;
    min-width: 0;
}
    .why-img img {
        max-width: 100%;
        max-height: 100%;
        object-fit: none;
        display: block;
    }

.why-title {
    /* remove the old flex + ::before diamond */
    font-size: 17px;
    font-weight: bold;
    color: var(--ink);
    line-height: 1.7;
    margin: 0 0 12px;
    text-align: right;
}

.why-text {
    font-size: 13.5px;
    color: black;
    line-height: 2;
    text-align: justify;
    margin: 0;
}


/* ================================================
   RESPONSIVE
   ================================================ */

@media (max-width: 991px) {
    .industry-tabs-list::before,
    .industry-tabs-list::after {
        content: '';
        position: absolute;
        top: 12px;
        bottom: 12px;
        width: 40px;
        pointer-events: none;
        z-index: 2;
        opacity: 0;
        transition: opacity .25s ease;
    }

    .industry-tabs-list::before {
        right: 0;
        background: linear-gradient(to right, #fff, rgba(255,255,255,0));
        border-radius: 18px 0 0 18px;
    }

    .industry-tabs-list::after {
        left: 0;
        background: linear-gradient(to left, #fff, rgba(255,255,255,0));
        border-radius: 0 18px 18px 0;
    }

    /* toggled by JS */
    .industry-tabs-list.can-scroll-start::before {
        opacity: 1;
    }

    .industry-tabs-list.can-scroll-end::after {
        opacity: 1;
    }
    .info-section{
        border:none;
        padding:0;
    }
    .industry-text.is-current .industry-features {
        padding-left: 0;
    }

    .industry-body {
        min-height: 0;
    }

    .industry-body-row {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .industry-cta {
        width: 100%;
        justify-content: center;
    }

    .sec-card {
        padding: 25px;
    }

    /* industry: tabs become a horizontal strip on top */
    .industry-tabs-wrapper {
        flex-direction: column;
        gap: 0;
    }

    .industry-tabs-list {
        position:relative;
        width: 100%;
        max-height: none;
        min-height: 0;
        overflow: hidden;
        padding: 12px;
        border-radius: 18px;
    }
    .industry-tabs-scroll {
        display: grid;
        grid-auto-flow: column; /* fill down, then across */
        grid-template-rows: repeat(2, 1fr); /* exactly 2 rows */
        grid-auto-columns: 104px; /* fixed tile width */
        gap: 10px;
        height: auto;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0 0 6px;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
    }
        .industry-tabs-scroll::-webkit-scrollbar {
            display: none;
        }

    .industry-tab {
        flex-shrink: 0;
        width: auto;
        margin-bottom: 0;
        white-space: normal;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        direction: rtl;
        text-align: center;
        padding: 14px 8px;
        min-height: 88px;
        background: #fff;
        border: 1px solid #ececec;
        border-radius: 14px;
        scroll-snap-align: start;
    }
        .industry-tab span {
            order: 2; /* label below icon */
            direction: rtl;
            font-size: 11.5px;
            line-height: 1.5;
            font-weight: 600;
        }
    .industry-tab-icon {
        order: 1; /* icon on top */
        width: 26px;
        height: 26px;
    }
    .industry-tab.active {
        background: #2196F3;
        border-color: #2196F3;
    }
    .industry-pane {
        width: 100%;
        border: none;
        padding: 22px 4px 0;
    }

    .industry-hero {
        background: none;
        min-height: 0;
        margin-bottom: 14px;
        display: block;
        overflow: visible;
    }

        .industry-hero img {
            display: none;
        }
    .industry-hero-title {
        position: static;
        transform: none;
        display: block;
        width: 100%;
        text-align: right;
        white-space: normal;
        font-size: 16px;
        font-weight: 700;
        color: #2196F3;
        pointer-events: auto;
    }
    .industry-body {
        min-height: 0;
    }

    .industry-body-row {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
    }
    .industry-features {
        margin-bottom: 4px;
    }

    .industry-cta {
        width: 100%;
        justify-content: center;
        padding: 13px 22px;
    }
    /* know: 2 up */
    .know-card {
        flex: 0 0 calc(50% - 10px);
    }

    /* why: single column */
    .why-grid {
        display: flex;
        grid-template-columns: none; /* cancel the grid */
        gap: 15px;
        margin-top: 24px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 16px 10px;
        margin-left: -16px; /* bleed to card edges */
        margin-right: -16px;
        scroll-padding-right: 16px; /* RTL start offset */
        scrollbar-width: none;
    }

        .why-grid::-webkit-scrollbar {
            display: none;
        }

    .why-item {
        flex: 0 0 82%;
        min-width: 0;
        scroll-snap-align: start;
        flex-direction: column; /* image on top, text below */
        align-items: center;
        text-align: center;
        gap: 16px;
    }

    .why-img {
        order: 0; /* cancel the desktop order:2 */
    }

    .why-content {
        order: 0;
        width: 100%;
    }

    .why-title {
        justify-content: center; /* if it was flex/right-aligned */
        text-align: center;
    }

    .why-text {
        text-align: center;
    }

    .why-head {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .why-download {
        align-self: flex-start;
    }
}

@media (max-width: 576px) {
    .why-item {
        flex: 0 0 85%;
    }
    .industry-tabs-scroll {
        grid-auto-columns: 96px;
    }
    .industry-tab {
        min-height: 82px;
        padding: 12px 6px;
    }
        .industry-tab span {
            font-size: 11px;
        }

    .industry-hero-title {
        font-size: 15px;
    }
    .page-section {
        padding: 0px 12px 35px;
    }
    .know-section {
        padding: 0px 12px 18px;
    }
    .why-card {
        border: none !important;
    }
    .sec-card {
        padding: 20px 16px;
        border-radius: 20px;
    }

    .sec-heading {
        font-size: 20px;
    }

    .industry-pane {
        padding: 16px;
    }

    .industry-cta {
        width: 100%;
        justify-content: center;
    }

    .know-card {
        flex: 0 0 82%;
        min-width: 0;
    }

    .know-thumb {
        height: 150px;
    }

    .why-item {
        padding: 20px 18px;
    }

    .why-title {
        font-size: 15px;
    }

    .why-download {
        width: 100%;
        justify-content: center;
    }
}
.videoPlayerPlaylistDiv{
    padding-right:5px!important;
}
.videoPlayerPlayerDiv{
    padding-left:5px!important;
}
@media (prefers-reduced-motion: reduce) {
    .industry-text, .know-card, .why-item {
        transition: none !important;
    }
}
#ourCustomers {
    width: 100vw;
    max-width: 1200px;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: auto;
    margin-top:0!important;
    margin-bottom:0!important;
}
.ib2-custom .ib2-inner {
    padding: 15px !important;
}
@media screen and (max-width: 780px) {
    .bmsdVideoPlayerSection{
        padding:40px 10px;
    }
    .videoPlayerPlaylistDiv {
        padding-right: 0px !important;
        padding-left: 0px !important;
    }

    .videoPlayerPlayerDiv {
        padding-right: 0px !important;
        padding-left: 0px !important;
    }
    .ib2-custom .ib2-inner{
        padding:0!important;
    }
    .industry-hero img {
        display: none;
    }
    #infoBox {
        width: 95vw !important;
    }
    #ourCustomers {
        width: 95vw !important;
    }
    .features-section {
        width: 95vw !important;
    }

    .stories-section {
        width: 95vw !important;
    }

    .demo-section {
        width: 95vw !important;
    }

    .industry-section {
        width: 95vw !important;
    }

    .crm-section {
        width: 95vw !important;
    }
    .info-section {
        width: 95vw !important;
    }
    .video-section {
        width: 95vw !important;
    }
}
@media (max-width: 991px) {
/*    .industry-tabs-wrapper {
        align-items: stretch;
    }

    .industry-tabs-list {
        max-height: 200px;
        min-height: 0;
    }*/

    .industry-cta {
        align-self: flex-start;
    }
}

