@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Arabic:wght@100..900&display=swap');

:root {
    --lang-bar-height: 40px; /* match your logo height */

    --primary:        #FF2800;
    --primary-dark:   #C93D14;
    --primary-light:  #FF8C00;
    --bg:             #F5F5F7;
    --card:           #FFFFFF;
    --border:         #F2F4F6;
    --text:           #1A1A2E;
    --text-muted:     #9999AA;
    --text-label:     #555566;
    --input-bg:       #F9F9FB;
    --section-title:  #AEAEAE;
    --input-hover:    #F2F4F6;
    --input-border:   #F2F4F6;
    --input-active:   #D8DDE5;
    --shadow:         0 2px 16px rgba(0,0,0,0.07);
    --radius:         12px;
    --radius-sm:      8px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── Body ── */
body {
    font-family: 'Noto Sans Arabic', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    padding: 40px 20px 80px;
}
body.rtl {
    font-family: 'Noto Sans Arabic', 'Sora', sans-serif;
    direction: rtl;
}

.lang-bar {
    direction: ltr ;
    flex-direction: row-reverse;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: var(--lang-bar-height);
    padding: 0 4px;
    gap: 6px;
    width: max-content;
    border-radius: 999px;
    background: var(--card, #fff);
    border: 1.5px solid var(--border, #e5e5e5);
    overflow: hidden;
    transition: padding 0.25s ease;

    margin-top: 10px;
    margin-right: 7%;
    margin-left: auto;
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    aspect-ratio: 1 / 1;
    padding: 0;
    border: none;
    order: 1;
    background: transparent;
    cursor: pointer;
    border-radius: 50%;
    flex-shrink: 0;

    width: 0;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.7);
    transition: width 0.25s ease, opacity 0.2s ease, transform 0.25s ease, margin 0.25s ease;
}

.lang-btn.active {
    width: calc(var(--lang-bar-height) - 4px);
    opacity: 1;

    pointer-events: auto;
    transform: scale(1);
}

/* Fallback: if nothing is marked active, force the first button visible */
.lang-bar:not(:has(.lang-btn.active)) .lang-btn:first-child {
    width: calc(var(--lang-bar-height) - 4px);
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.lang-bar.expanded .lang-btn {
    width: calc(var(--lang-bar-height) - 4px);
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.lang-btn svg {
    width: 60%;
    height: 60%;
    display: block;
    border-radius: 2px;
}

.lang-btn:hover svg {
    transform: scale(1.05);
}

.lang-btn.active svg {
    filter: drop-shadow(0 0 1px rgba(0,0,0,0.2));
}


.learn-more {
    background-color: #FF2800;
    border: none;
    border-radius: 12px;
    color: white;
    width: 250px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
}
.learn-more:hover {
    background-color: #e62400;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    color: white;
}
.learn-more:focus,
.learn-more:active,
.learn-more:visited {
    background-color: #FF2800;
    color: white;
    text-decoration: none;
}
.home-page-banner{
    padding-top: 60px;
}

.mc-banner{
    display: flex;
    justify-content: space-around;
}
.mc-content{
    margin-left: 40px;
}

.banner-logo{
    display: flex;
    justify-content: flex-start;
    margin-top: 30px;

}

.banner-hero{
    display: grid;
    place-items: center;
    width: 32rem;
    height: 12rem;
    filter: drop-shadow(0 3rem 4rem #ff6a658e);
    margin-right: 200px;
    padding-bottom: 500px;
}

.banner-hero img {
    width: 27vw;
}

.card-left {
    animation: floating-left 5s cubic-bezier(0.750, 0, 0.250, 1) infinite;
    position: absolute;
    z-index: 5;
    bottom: 9rem;
}

.card-right {
    position: absolute;
    z-index: 7;
    left: 3rem;
    animation: floating-right 5s cubic-bezier(0.750, 0, 0.250, 1) infinite;
}


@keyframes floating-left {
    0% {
        transform: translate(0rem, 0rem);
    }
    50% {
        transform: translate(-1rem, 0) ;
    }
    100% {
        transform: translate(0rem, 0rem);
    }
}

@keyframes floating-right {
    0% {
        transform: translate(0rem, 0rem);
    }
    50% {
        transform: translate(2.5rem, 0);
    }
    100% {
        transform: translate(0rem, 0rem);
    }
}

.mcLogo{
    margin-left: 20px;
}

.banner-text{
    padding-top: 30px;
}
.banner-text h1{
    font-size: 54px;
    font-weight: 700;
    font-family: 'Noto Sans Arabic', sans-serif;
    background-image: linear-gradient(to right, #FF2800, #FF5907);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding-bottom: 10px;
}

.banner-text h2{
    font-size: 24px;
    font-weight: 400;
    font-family: 'Noto Sans Arabic', sans-serif;
    color: #FF2800;
    margin-bottom: 5px;
}

.banner-text p{
    font-size: 20px;
    font-family: 'Noto Sans Arabic', sans-serif;
    color: #919191;
    width: 70%;
}
.Card-header{
    display: flex;
    justify-content: center;
    padding-top: 30px;
}
.Card-header p{
    font-family: 'Noto Sans Arabic', sans-serif;
    font-size:36px;
    font-weight: 700;
    color: #444C57;
}

.slider-container {
    width: 100%;
    overflow: hidden;
    background: transparent;
    position: relative;
}


.slider-track {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    height: 208px;
    scroll-behavior: smooth;
    gap: 2%;
    animation: scroll-ltr 25s linear infinite;
    will-change: transform;
    transform: translateZ(0);
}

.slider-track:hover {
    animation-play-state: paused;
}

.slider-track::-webkit-scrollbar {
    display: none;
}
.slider-track {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

@keyframes scroll-ltr {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes scroll-rtl {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(50%);
    }
}
[dir="rtl"] .slider-track {
    animation-name: scroll-rtl;
}
.benefits-card{
    display: flex;
    flex: 0 0 12.5rem;
    height: 100%;
    scroll-snap-align: start;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 220px;
    border: 1px solid #FFBBB9;
    border-radius: 24px;
    background-image: linear-gradient(to bottom, #FF28000D, #FF620000);
}

.benefits-card p{
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    padding-top: 15px;
    color: #000000;
    text-align: center;
    width: 75%;

}

.card-types{
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    margin: 0 30px;
    gap: 20px;

}
.card-types ul{
    list-style-type: disc;
    margin-left: -1rem;

}
.card-types ul li{
    font-family: 'Noto Sans Arabic', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #444C57;
    padding-top: 3px;

}
.mc-card ul li:nth-child(n+5) {
    display: none;
}
.mc-card.expanded ul li {
    display: list-item;
}
.card-expand-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin: 10px auto 0;
    border: 1px solid #E2E4E9;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    color: #444C57;
    transition: transform 0.25s ease;
}
.card-expand-toggle svg {
    width: 18px;
    height: 18px;
}
.mc-card.expanded .card-expand-toggle {
    transform: rotate(180deg);
}
.card-types li::before{
}
li::marker {
    font-size: 0.60em;
}
/* width was 270 for 4 cards */
.mc-card{
    display: flex;
    flex-direction: column;

    padding: 20px;
    min-width: 1rem;
    max-width: 370px;
    border-radius: 24px;
    background: #F9F9FB;

}
.mc-card img {
    display: block;
    margin: 0 auto 15px;
    width: 230px;
    max-width: 100%;
    height: auto;
}

.card-title{
    font-family: 'Noto Sans Arabic', sans-serif;
    font-size: 18px;
    font-weight: 600;
    background-image: linear-gradient(to right, #FF2800, #FF6200);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-align: center;
    padding: 2px;
}
.card-limit{
    font-family: 'Noto Sans Arabic', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #FF6B65;
    text-decoration: underline;
    text-align: center;
    padding: 2px;
    margin-top: auto;
}

.customer-care{
    font-family: 'Noto Sans Arabic', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #FF6B65;
    text-align: center;
    padding: 2px;
    margin-top: auto;
}

.playlist-text{
    font-family: 'Noto Sans Arabic', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #FF6B65;
    text-decoration: underline;
    text-align: center;
    padding: 2px;
    margin-top: auto;
}

.card-benefits-virtual{
    padding-left: 14%;
    padding-right: 14%;
}
.card-benefits-normal{
    padding-left: 13%;
    padding-right: 13%;
}

.mc-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.mc-video-section{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 10px 8%;
    margin-bottom: -50px;
    position: relative;
    gap: 80px;
}
.mc-video-section > img:first-child {
    position: absolute;
    left: -40px;
    top: 400px;
    width: 220px;
    height: auto;
    z-index: 0;
}
/* Right line */
.mc-video-section > img:last-child {
    position: absolute;
    right: -40px;
    top: 80px;
    width: 220px;
    height: auto;
    z-index: 0;
}

.mc-video{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.mc-video p{
    font-family: 'Noto Sans Arabic', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #444C57;
    margin-top: 100px;
}
.video-card {
    display: flex;
    width: 100%;
    max-width: 700px;
    margin: 10px auto 100px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    background: #fff;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}
.video-card iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
}

.playlist-link{
    position: relative;
    z-index: 9999;
    bottom: 20px;
}
.download-section{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;   /* changed from center → pins children to bottom */
    background: #F9F9FB;
    padding: 80px 15% 0;     /* removed bottom padding so phone can sit flush at the edge */
    height: 400px;
    overflow: hidden;        /* clips anything (like the oversized phone) that exceeds the box */
    position: relative;
}

.download-section{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #F9F9FB;
    padding: 80px 15%;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.download-content{
    display: flex;
    flex-direction: column;
    z-index: 1;
}
.download-content p{
    font-family: 'Noto Sans Arabic', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #FF2800;
    width: 60%;
}

.download-link-logo{
    display: flex;
}

.download-link-logo img{
    display: flex;
    width: 100%;
    height: 100%;
}
.download-link-logo a{
    width: 20%;
    padding-left: 1%;
}

.download-logo{
    position: absolute;
    right: 10%;
    bottom: 0;
}

.download-logo img{
    width: 320px;
    max-height: 400px;
    display: block;
}

.faq-card {
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    background-color: #ffffff;
    padding: 36px 40px 40px 40px;
    width: 80%;
    box-sizing: border-box;
    margin: auto;
    margin-top: 50px;
    margin-bottom: 50px;
    position: relative;
}

.faq-toggle {
    display: none;
}

.faq-header {
    font-family: 'Noto Sans Arabic', sans-serif;
    font-weight: 700;
    font-size: 42px;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-right: 40px; /* Makes space for the arrow icon on the right */
}


.faq-label {
    font-family: 'Noto Sans Arabic', sans-serif;
    color: #FF2800;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.faq-title {
    font-family: 'Noto Sans Arabic', sans-serif;
    color: #444C57;
    font-size: 42px;
    font-weight: 700;
    margin: 0;
    text-align: center;
}

.faq-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(45deg); /* Downward pointing chevron */
    width: 14px;
    height: 14px;
    border-right: 2px solid #9ca3af;
    border-bottom: 2px solid #9ca3af;
    transition: transform 0.3s ease;
}

.faq-body {
    display: none;
    margin-top: 20px;
}

.faq-item {
    margin-bottom: 32px;
}

.faq-item h2{
    font-family: 'Noto Sans Arabic', sans-serif;
    color: #000000;
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 8px 0;
}

.faq-item h3 {
    font-family: 'Noto Sans Arabic', sans-serif;
    color: #000000;
    font-size: 16px;
    font-weight: 450;
    margin: 0 0 8px 0;
}

.faq-item p {
    font-family: 'Noto Sans Arabic', sans-serif;
    color: #919191;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.faq-item:last-child {
    margin-bottom: 0;
}

/* --- Toggled State (Active) --- */
/* When checkbox is checked, rotate the chevron upward */
.faq-toggle:checked + .faq-header .faq-icon {
    transform: translateY(-50%) rotate(-135deg);
}
/* When checkbox is checked, reveal the body */
.faq-toggle:checked ~ .faq-body {
    display: block;
}

.card-limits-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.card-limits-overlay[hidden] {
    display: none;
}

/* Dialog box */
.card-limits-dialog {
    background: #fff;
    border-radius: 12px;
    width: 100%;
    max-width: 1040px;
    max-height: 85vh;
    padding: 32px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.card-limits-dialog h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px;
}

.card-limits-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    font-size: 24px;
    line-height: 1;
    color: #999;
    cursor: pointer;
    padding: 4px;
}

.card-limits-close:hover {
    color: #333;
}

/* Table wrapper (scrolls if content is long) */
.card-limits-table-wrap {
    overflow-y: auto;
    flex: 1;
}

.card-limits-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

/* Section header rows (e.g. "Re-load", "ATM") */
.card-limits-section-row th {
    background: #ff2800;
    color: #FFFFFF;
    text-align: center;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 700;
    border-top: 1px solid #eee;
}

/* Column header rows ("Limit" / "Amount") */
.card-limits-header-row th {
    background: #e9eaf0;
    color: #555;
    text-align: center;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
}

/* Data rows */
.card-limits-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
    color: #333;
    vertical-align: top;
}

.card-limits-table td:first-child {
    width: 55%;
    color: #444;
}

.card-limits-table tr:last-child td {
    border-bottom: none;
}

.card-limits-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    padding-right: 32px; /* keeps clear of the close button */
}

.card-limits-header h3 {
    margin: 0;
}

.card-limits-compare {
    display: flex;
    align-items: center;
    padding: 10px;
    gap: 8px;
    font-size: 13px;
    color: #555;
}

.card-limits-compare select {
    padding: 6px 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 13px;
    background: #fff;
    cursor: pointer;
}

/* Three-column layout when comparing */
.card-limits-table td:nth-child(3),
.card-limits-header-row th:nth-child(3) {
    border-left: 1px solid #eee;
}

/* ════════════════════════════════════════
   RTL SUPPORT (Arabic / Kurdish)
   Mirrors the physical left/right values above that don't
   auto-flip with `direction`. Flex-based siblings (e.g. the
   banner text vs. hero image) already reorder themselves via
   `dir`, so only spacing, absolute positions, and text-align
   need explicit correction here.
════════════════════════════════════════ */
body.rtl .lang-bar {
    margin-right: auto;
    margin-left: 7%;
}
body.rtl .mc-content {
    margin-left: 0;
    margin-right: 40px;
}
body.rtl .banner-hero {
    margin-right: 0;
    margin-left: 60px;
}

body.rtl .card-left {
    z-index: 5;
    bottom: 9rem;
}

body.rtl .card-right {
    z-index: 7;
    left: 8rem;
}

body.rtl .mcLogo {
    margin-left: 0;
    margin-right: 20px;
}
body.rtl .card-types ul {
    margin-left: 0;
}
body.rtl .download-link-logo a {
    padding-left: 0;
    padding-right: 1%;
}
body.rtl .download-logo {
    right: auto;
    left: 10%;
}
body.rtl .faq-header {
    padding-right: 0;
    padding-left: 40px;
}
body.rtl .faq-icon {
    right: auto;
    left: 0;
    transform: translateY(-50%) rotate(45deg);
}
body.rtl .faq-toggle:checked + .faq-header .faq-icon {
    transform: translateY(-50%) rotate(-135deg);
}
body.rtl .card-limits-close {
    right: auto;
    left: 24px;
}
body.rtl .card-limits-header {
    padding-right: 0;
    padding-left: 32px;
}
body.rtl .card-limits-section-row th,
body.rtl .card-limits-header-row th {
    text-align: center;
}
body.rtl .card-limits-table td:nth-child(3),
body.rtl .card-limits-header-row th:nth-child(3) {
    border-left: none;
    border-right: 1px solid #eee;
}

/* ════════════════════════════════════════
   TABLET  (768px to 1024px)
════════════════════════════════════════ */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .home-page-banner{
        padding-top: 20px;
    }
    .mc-banner{
        display: flex;
        flex-direction: column;
        align-items: center;

    }
    .mc-content{
        margin-left: 100px;

    }
    .banner-text h1{
        font-size: 48px;
        font-weight: 700;
    }

    .banner-text h2{
        font-size: 18px;
        margin-bottom: 5px;
    }

    .banner-text p{
        font-size: 18px;
        width: 70%;
    }

    .banner-hero{
        margin:  -30px auto;
    }

    .banner-hero img {
        width: 70%;
    }

    .card-left {
        bottom: 9rem;
        right: 9rem;

    }
    .card-right {
        z-index: 7;
        left: 7rem;
    }

    .slider-track{
        height: 120px;
    }
    .slider-container {
        margin-top: 80px;
    }

    .benefits-card{
        flex-direction: row;
        flex: 0 0 270px;
        height: 85px;
        width: 270px;
    }
    .benefits-card img{
        width: 40px;
        margin-left: 15px;
    }
    .benefits-card p{
        font-size: 14px;
        width: 80%;
    }

    .card-benefits-virtual{
        padding-left: 12%;
        padding-right: 12%;

    }
    .card-benefits-normal{
        padding-left: 14%;
        padding-right: 14%;
    }

    .card-types {
        display: flex;
        gap: 20px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 10px 0;
        margin: 0 0 0 5px;
        scrollbar-width: none; /* Firefox */
    }

    .card-types::-webkit-scrollbar {
        display: none; /* Chrome, Safari */
    }

    .card-types::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 50px;
        height: 100%;
        pointer-events: none;
        background: linear-gradient(
                to left,
                #fff 0%,
                rgba(255,255,255,0.9) 25%,
                rgba(255,255,255,0.5) 60%,
                rgba(255,255,255,0) 100%
        );
    }
    .mc-card {
        flex: 0 0 auto;
        padding: 16px;
        cursor: pointer;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .mc-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    .mc-video-section{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 0 0;
    }
    .mc-video-section > img:first-child {
        left: -40px;
        top: 650px;
        width: 220px;
        height: auto;
        z-index: 0;
    }
    /* Right line */
    .mc-video-section > img:last-child {
        position: absolute;
        right: -40px;
        top: 80px;
        width: 220px;
        height: auto;
        z-index: 0;
    }
    .mc-video{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 1;
    }
    .mc-video p{
        margin: 0;
    }

    .download-section{
        padding: 30px 13%;
        height: 290px;
    }

    .download-content p{
        font-size: 32px;
    }

    .download-link-logo a{
        width: 18%;
    }

    .download-logo{
        right: 4%;
    }

    .download-logo img{
        width: 240px;
        max-height: 380px;
    }

    /* RTL overrides at this breakpoint (values redefined above, so must
       be re-mirrored here rather than relying on the base RTL block) */
    body.rtl .mc-content {
        margin-left: 0;
        margin-right: 100px;
    }
    body.rtl .banner-hero {
        margin-right: 50px;
    }

    body.rtl .card-types {
        margin: 0 40px 0 0;
    }
    body.rtl .benefits-card img {
        margin-left: 0;
        margin-right: 15px;
    }
    body.rtl .mc-video-section > img:first-child {
        left: auto;
        right: -40px;
    }
    body.rtl .mc-video-section > img:last-child {
        right: auto;
        left: -40px;
    }
    body.rtl .download-logo {
        right: auto;
        left: 4%;
    }
}


/* ════════════════════════════════════════
   MOBILE  (≤ 768px)
════════════════════════════════════════ */
@media (max-width: 768px) {

    body { padding: 0 0 60px; background: #fff; }

    html,
    body {
        /* hide scrollbar */
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    html::-webkit-scrollbar,
    body::-webkit-scrollbar {
        display: none;
    }
    .lang-bar {
        max-width: 100%;
        padding: 0 20px;
        margin: 10px 15px 40px auto;
    }
    .lang-btn svg {
        width: 25px;
        height: 25px;
        display: block;
        border-radius: 2px;
        transition: transform 0.1s ease;
    }
    .home-page-banner{
        padding-top: 60px;
    }
    .mc-banner{
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: -40px;
    }
    .mc-card{
        max-width: 270px;
    }
    .banner-text{
        padding-top: 0px;
    }
    .banner-text h1{
        font-size: 32px;
        width: 65%;
    }

    .banner-text h2{
        font-size: 14px;
        margin-bottom: 5px;
        width: 65%;
    }

    .banner-text p{
        font-size: 14px;
        width: 70%;
    }

    .banner-hero{
        margin:auto;
        padding: 170px 0;
        margin-bottom: -60px;
    }

    .banner-hero img {
        width: 60%;
    }

    .card-left {
        bottom: 9rem;
        right: 9rem;

    }
    .card-right {
        z-index: 7;
        left: 7rem;
    }

    .slider-track{
        height: 80px;
        gap: 1%;
    }
    .slider-container {
        margin-top: 80px;
    }
    .benefits-card{
        flex-direction: row;
        flex: 0 0 230px;
        height: 70px;
        width: 170px;
    }
    .benefits-card img{
        width: 40px;
        margin-left: 20px;
    }
    .benefits-card p{
        font-size: 14px;
        width: 80%;
    }

    .Card-header p{
        font-size:24px;
    }
    .card-types {
        display: flex;
        gap: 20px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 10px 0;
        margin: 0 0 0 5px;
        scrollbar-width: none; /* Firefox */
    }

    .card-types::-webkit-scrollbar {
        display: none; /* Chrome, Safari */
    }

    .card-types::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 50px;
        height: 100%;
        pointer-events: none;
        background: linear-gradient(
                to left,
                #fff 0%,
                rgba(255,255,255,0.9) 25%,
                rgba(255,255,255,0.5) 60%,
                rgba(255,255,255,0) 100%
        );
    }
    .mc-card {
        flex: 0 0 auto;
        padding: 16px;
        cursor: pointer;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .mc-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    .card-benefits-virtual{
        padding-left: 17%;
        padding-right: 17%;
    }
    .card-benefits-normal{
        padding-left: 15%;
        padding-right: 16%;
    }

    .mc-video-section{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 50px 0;
    }
    .mc-video-section > img:first-child {
        left: -40px;
        top: 650px;
        width: 220px;
        height: auto;
        z-index: 0;
    }
    /* Right line */
    .mc-video-section > img:last-child {
        position: absolute;
        right: -40px;
        top: 80px;
        width: 220px;
        height: auto;
        z-index: 0;
    }
    .mc-video{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 1;
        margin-top: -50px;
        margin-bottom: -50px;
    }
    .mc-video p{
        margin: 0;
    }
    .video-card {
        width: 75%;
        max-width: 700px;
        margin: 10px auto 100px;
        border-radius: 20px;
    }

    .download-section{
        flex-direction: column;
        height: auto;
        padding: 40px 6% 40px; /* extra bottom padding reserves room for the phone */
    }

    .download-content{
        align-items: center;
    }

    .download-content p{
        font-size: 20px;
        width: 100%;
        text-align: center;}

    .download-link-logo{
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .download-link-logo a{
        width: 28%;
        padding-left: 0;
    }

    .download-logo img{
        display: none;
    }

    .faq-label {
        font-size: 12px;
    }
    .faq-card {
        padding: 24px 20px 30px 20px;
    }
    .faq-title {
        font-size: 14px;
    }
    .faq-header {
        padding-right: 30px;
    }
    .faq-item h3 {
        font-size: 16px;
    }
    .faq-item p {
        font-size: 10px;
    }
    .card-limits-dialog {
        padding: 20px;
        max-height: 90vh;
    }

    .card-limits-dialog h3 {
        font-size: 20px;
    }

    .card-limits-table {
        font-size: 13px;
    }

    .card-limits-table td,
    .card-limits-header-row th,
    .card-limits-section-row th {
        padding: 8px 10px;
    }

    .card-limits-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding-right: 0;
    }

    /* RTL overrides at this breakpoint */
    body.rtl .banner-hero {
        margin-right: 150px;
    }
    body.rtl .card-left {
        z-index: 5;
        bottom: 8rem;
    }

    body.rtl .card-right {
        z-index: 7;
        left: 11rem;
    }
    body.rtl .card-left {
        right: auto;
        left: 9rem;
    }
    body.rtl .benefits-card img {
        margin-left: 0;
        margin-right: 20px;
    }
    body.rtl .mc-video-section > img:first-child {
        left: auto;
        right: -40px;
    }
    body.rtl .mc-video-section > img:last-child {
        right: auto;
        left: -40px;
    }
    body.rtl .download-link-logo a {
        padding-left: 0;
        padding-right: 0;
    }
    body.rtl .faq-header {
        padding-right: 0;
        padding-left: 30px;
    }
    body.rtl .card-limits-header {
        padding-right: 0;
        padding-left: 0;
    }
}