﻿/* ===== FORSA CSS (Clean) + Mobile Vertical Menu ===== */
/* ====== لصق الثيم كما هو ====== */
:root {
    --blue: #0A5AA8;
    --red: #E21D23;
    --ink: #111827;
    --muted: #6B7280;
    --bg: #F7FAFF;
    --card: #FFFFFF;
    --line: #E5E7EB;
    --shadow: 0 10px 30px rgba(17,24,39,.08);
    --radius: 18px;
    --max: 1120px;
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: "Cairo", "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--ink);
    background: linear-gradient(180deg, var(--bg), #fff 45%);
}

a {
    color: inherit;
    text-decoration: none
}

.wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 18px
}

.topbar {
    background: #0b1b33;
    color: #fff;
    font-size: 14px;
}

    .topbar .wrap {
        display: flex;
        gap: 14px;
        align-items: center;
        justify-content: space-between;
        padding: 10px 18px;
    }

    .topbar .items {
        display: flex;
        gap: 18px;
        flex-wrap: wrap;
        opacity: .95
    }

.chip {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 6px 10px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
}

    .chip b {
        font-weight: 800
    }

header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,.75);
    border-bottom: 1px solid rgba(229,231,235,.75);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 14px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
}

.logo {
    width: 200px;
    height: 80px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #fff;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
        transform: scaleY(.92);
        transform-origin: center;
    }

.brand .name {
    line-height: 1.1
}

    .brand .name .ar {
        font-weight: 800;
        font-size: 18px
    }

    .brand .name .en {
        font-weight: 800;
        font-size: 12px;
        letter-spacing: .18em;
        color: var(--blue)
    }

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

nav a {
    padding: 10px 12px;
    border-radius: 12px;
    color: var(--ink);
    font-weight: 600;
}

    nav a:hover {
        background: #EEF6FF
    }

.actions {
    display: flex;
    gap: 10px;
    align-items: center
}

.btn {
    border: 1px solid var(--line);
    background: #fff;
    padding: 10px 14px;
    border-radius: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: .15s transform ease, .15s box-shadow ease;
    box-shadow: 0 6px 16px rgba(17,24,39,.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

    .btn:hover {
        transform: translateY(-1px);
        box-shadow: var(--shadow)
    }

    .btn.primary {
        border-color: transparent;
        background: linear-gradient(135deg, var(--blue), #0b3b80);
        color: #fff;
    }

    .btn.red {
        border-color: transparent;
        background: linear-gradient(135deg, var(--red), #b10e12);
        color: #fff;
    }

section {
    padding: 26px 0
}

.card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: 0 10px 22px rgba(17,24,39,.06);
    position: relative;
    overflow: hidden;
}

    .card:after {
        content: "";
        position: absolute;
        inset: auto -60px -60px auto;
        width: 160px;
        height: 160px;
        background: radial-gradient(circle at 30% 30%, rgba(10,90,168,.18), transparent 70%);
        border-radius: 50%;
    }

input {
    width: 100%;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #fff;
    font: inherit;
    outline: none;
}

    input:focus {
        border-color: #B9D6FF;
        box-shadow: 0 0 0 4px rgba(10,90,168,.10);
    }

.muted {
    color: var(--muted);
    line-height: 1.9;
}

.titleRow {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

    .titleRow h2 {
        margin: 0;
        font-size: 26px
    }

    .titleRow p {
        margin: 0;
        color: var(--muted);
    }

/* ====== مكوّن الرفع (إضافات بسيطة) ====== */
.uploadGrid {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 14px;
    align-items: stretch;
}

.uploadBox {
    display: grid;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.hintBox {
    background: linear-gradient(145deg, #0b1b33, #0a2c56);
    color: #fff;
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255,255,255,.10);
    position: relative;
    overflow: hidden;
}

    .hintBox h3 {
        margin: 0 0 8px
    }

    .hintBox p {
        margin: 0;
        opacity: .92;
        line-height: 1.9
    }

.hintLine {
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    font-weight: 800;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.progressWrap {
    display: none;
    gap: 10px;
    align-items: center;
}

.bar {
    width: 100%;
    height: 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    overflow: hidden;
    box-shadow: inset 0 2px 8px rgba(17,24,39,.06);
}

    .bar > div {
        height: 100%;
        width: 0%;
        background: linear-gradient(135deg, var(--blue), #0b3b80);
        border-radius: 999px;
        transition: width .12s linear;
    }

.percent {
    min-width: 56px;
    text-align: left;
    font-weight: 900;
    color: var(--blue);
}

.statusText {
    font-weight: 800;
}

@@media (max-width: 980px) {
    .uploadGrid {
        grid-template-columns: 1fr;
    }
}



:root {
    --blue: #0A5AA8;
    --red: #E21D23;
    --ink: #111827;
    --muted: #6B7280;
    --bg: #F7FAFF;
    --card: #FFFFFF;
    --line: #E5E7EB;
    --shadow: 0 10px 30px rgba(17,24,39,.08);
    --radius: 18px;
    --max: 1120px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Cairo", "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--ink);
    background: linear-gradient(180deg, var(--bg), #fff 45%);
}

a {
    color: inherit;
    text-decoration: none;
}

.wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 18px;
}

.topbar {
    background: #0b1b33;
    color: #fff;
    font-size: 14px;
}

    .topbar .wrap {
        display: flex;
        gap: 14px;
        align-items: center;
        justify-content: space-between;
        padding: 10px 18px;
    }

    .topbar .items {
        display: flex;
        gap: 18px;
        flex-wrap: wrap;
        opacity: .95;
    }

.chip {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 6px 10px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
}

    .chip b {
        font-weight: 800;
    }

header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,.75);
    border-bottom: 1px solid rgba(229,231,235,.75);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 14px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
}

/* الشعار */
.logo {
    width: 200px;
    height: 80px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #fff;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
        transform: scaleY(.92);
        transform-origin: center;
    }

.brand .name {
    line-height: 1.1;
}

    .brand .name .ar {
        font-weight: 800;
        font-size: 18px;
    }

    .brand .name .en {
        font-weight: 800;
        font-size: 12px;
        letter-spacing: .18em;
        color: var(--blue);
    }

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

nav a {
    padding: 10px 12px;
    border-radius: 12px;
    color: var(--ink);
    font-weight: 600;
}

    nav a:hover {
        background: #EEF6FF;
    }

.actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn {
    border: 1px solid var(--line);
    background: #fff;
    padding: 10px 14px;
    border-radius: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: .15s transform ease, .15s box-shadow ease;
    box-shadow: 0 6px 16px rgba(17,24,39,.06);
}

    .btn:hover {
        transform: translateY(-1px);
        box-shadow: var(--shadow);
    }

    .btn.primary {
        border-color: transparent;
        background: linear-gradient(135deg,var(--blue),#0b3b80);
        color: #fff;
    }

    .btn.red {
        border-color: transparent;
        background: linear-gradient(135deg,var(--red),#b10e12);
        color: #fff;
    }

/* Hero */
.hero {
    padding: 34px 0 10px;
}

.heroGrid {
    display: grid;
    grid-template-columns: 1.35fr .85fr;
    gap: 22px;
    align-items: stretch;
}

.heroCard {
    background: linear-gradient(145deg,#ffffff,#f6f9ff);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 26px;
    position: relative;
    overflow: hidden;
}

    .heroCard:before {
        content: "";
        position: absolute;
        inset: -40px -40px auto auto;
        width: 220px;
        height: 220px;
        background: radial-gradient(circle at 30% 30%, rgba(226,29,35,.22), rgba(10,90,168,.18), transparent 70%);
        border-radius: 50%;
        transform: rotate(18deg);
    }

.kicker {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: #EEF6FF;
    border: 1px solid #DCEBFF;
    color: #0b3b80;
    font-weight: 800;
    margin-bottom: 14px;
}

h1 {
    margin: 0 0 10px;
    font-size: 38px;
    letter-spacing: .2px;
}

.sub {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.85;
}

.heroBadges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 12px 0 18px;
}

.badge {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 12px;
    font-weight: 800;
    font-size: 14px;
}

    .badge span {
        color: var(--blue);
    }

.ctaRow {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.stat {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: 0 8px 20px rgba(17,24,39,.06);
}

    .stat .n {
        font-size: 22px;
        font-weight: 800;
    }

    .stat .t {
        color: var(--muted);
        margin-top: 6px;
        line-height: 1.6;
    }

.mini {
    background: linear-gradient(145deg,#0b1b33,#0a2c56);
    color: #fff;
    border: 0;
    padding: 22px;
}

    .mini h3 {
        margin: 0 0 8px;
        font-size: 18px;
    }

    .mini p {
        margin: 0;
        opacity: .92;
        line-height: 1.9;
    }

    .mini .list {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .mini .item {
        background: rgba(255,255,255,.08);
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 14px;
        padding: 10px 12px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        font-weight: 700;
    }

        .mini .item b {
            color: #fff;
        }

        .mini .item small {
            opacity: .9;
        }

/* Sections */
section {
    padding: 34px 0;
}

.sectionTitle {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

    .sectionTitle h2 {
        margin: 0;
        font-size: 26px;
    }

    .sectionTitle p {
        margin: 0;
        color: var(--muted);
        line-height: 1.8;
        max-width: 620px;
    }

.grid3 {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 14px;
}

.card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: 0 10px 22px rgba(17,24,39,.06);
    position: relative;
    overflow: hidden;
}

    .card:after {
        content: "";
        position: absolute;
        inset: auto -60px -60px auto;
        width: 160px;
        height: 160px;
        background: radial-gradient(circle at 30% 30%, rgba(10,90,168,.18), transparent 70%);
        border-radius: 50%;
    }

.icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: #EEF6FF;
    border: 1px solid #DCEBFF;
    color: #0b3b80;
    font-weight: 900;
    margin-bottom: 10px;
}

.card h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.9;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: stretch;
}

.bullets {
    margin: 10px 0 0;
    padding: 0 18px 0 0;
    color: var(--muted);
    line-height: 1.9;
}

    .bullets li {
        margin: 8px 0;
    }

.steps {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 12px;
}

.step {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: 0 10px 20px rgba(17,24,39,.05);
}

    .step .no {
        width: 34px;
        height: 34px;
        border-radius: 12px;
        display: grid;
        place-items: center;
        font-weight: 900;
        background: #fff;
        border: 1px solid var(--line);
        color: var(--blue);
        margin-bottom: 10px;
    }

    .step h4 {
        margin: 0 0 6px;
    }

    .step p {
        margin: 0;
        color: var(--muted);
        line-height: 1.85;
    }

.ctaBand {
    background: linear-gradient(135deg, rgba(10,90,168,.12), rgba(226,29,35,.10));
    border: 1px solid #E9EAF0;
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    box-shadow: var(--shadow);
}

    .ctaBand .txt h3 {
        margin: 0 0 4px;
    }

    .ctaBand .txt p {
        margin: 0;
        color: var(--muted);
        line-height: 1.85;
    }

/* Contact */
.contact {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 14px;
}

form {
    display: grid;
    gap: 10px;
}

input, select, textarea {
    width: 100%;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #fff;
    font: inherit;
    outline: none;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

    input:focus, select:focus, textarea:focus {
        border-color: #B9D6FF;
        box-shadow: 0 0 0 4px rgba(10,90,168,.10);
    }

.two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.infoBox {
    background: linear-gradient(145deg,#0b1b33,#0a2c56);
    color: #fff;
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255,255,255,.10);
}

    .infoBox h3 {
        margin: 0 0 8px;
    }

    .infoBox p {
        margin: 0 0 12px;
        opacity: .92;
        line-height: 1.9;
    }

    .infoBox .line {
        padding: 10px 12px;
        border-radius: 14px;
        background: rgba(255,255,255,.08);
        border: 1px solid rgba(255,255,255,.12);
        margin: 10px 0;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: wrap;
        font-weight: 800;
    }

.map {
    margin-top: 12px;
    border-radius: var(--radius);
    height: 210px;
    background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02)), repeating-linear-gradient(45deg, rgba(255,255,255,.12) 0 10px, rgba(255,255,255,.06) 10px 20px);
    border: 1px solid rgba(255,255,255,.12);
    display: grid;
    place-items: center;
    text-align: center;
    padding: 18px;
    opacity: .95;
}

footer {
    border-top: 1px solid var(--line);
    padding: 18px 0 26px;
    color: var(--muted);
}

.footerRow {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.small {
    font-size: 13px;
    line-height: 1.8;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    font-weight: 800;
}

    .tag i {
        width: 10px;
        height: 10px;
        border-radius: 4px;
        background: var(--red);
        display: inline-block;
    }

.mutedLink {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
    opacity: .9;
}

/* LTR tweaks */
html[dir="ltr"] body {
    font-family: "Inter","Cairo", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

html[dir="ltr"] .bullets {
    padding: 0 0 0 18px;
}

/* ===== Slider ===== */
.slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
}

    .slider .slides {
        display: flex;
        flex-wrap: nowrap;
        width: 100%;
        will-change: transform;
        transition: transform .55s ease;
        position: relative;
        z-index: 1;
    }

    .slider .slide {
        flex: 0 0 100%;
        height: clamp(210px, 34vw, 360px);
        position: relative;
    }

        .slider .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

    .slider .caption {
        position: absolute;
        inset-inline: 14px;
        bottom: 14px;
        padding: 10px 12px;
        border-radius: 14px;
        background: rgba(11,27,51,.62);
        color: #fff;
        font-weight: 800;
        line-height: 1.6;
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255,255,255,.14);
    }

    .slider .sbtn, .slider .dots {
        z-index: 10;
        position: absolute;
    }

    .slider .sbtn {
        top: 50%;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        border-radius: 14px;
        border: 1px solid rgba(255,255,255,.22);
        background: rgba(11,27,51,.48);
        color: #fff;
        font-size: 26px;
        font-weight: 900;
        cursor: pointer;
        display: grid;
        place-items: center;
        backdrop-filter: blur(8px);
    }

        .slider .sbtn:hover {
            background: rgba(11,27,51,.62);
        }

    .slider .prev {
        inset-inline-start: 12px;
    }

    .slider .next {
        inset-inline-end: 12px;
    }

    .slider .dots {
        inset-inline: 0;
        bottom: 12px;
        display: flex;
        justify-content: center;
        gap: 10px;
        padding: 6px 10px;
    }

    .slider .dot {
        width: 28px;
        height: 28px;
        border-radius: 999px;
        border: 1px solid rgba(255,255,255,.6);
        background: rgba(11,27,51,.55);
        color: #fff;
        font-weight: 900;
        font-size: 12px;
        display: grid;
        place-items: center;
        cursor: pointer;
    }

        .slider .dot.active {
            background: #fff;
            color: #0b1b33;
        }

#forsaSlider .slides {
    direction: ltr;
}

#forsaSlider .slide {
    direction: rtl;
}

/* ===== Responsive layout ===== */
@@media (max-width: 980px) {
    .heroGrid {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr 1fr;
    }

    .grid3 {
        grid-template-columns: 1fr 1fr;
    }

    .steps {
        grid-template-columns: 1fr 1fr;
    }

    .contact {
        grid-template-columns: 1fr;
    }

    .brand {
        min-width: unset;
    }
}

@@media (max-width: 640px) {
    h1 {
        font-size: 30px;
    }

    .grid3 {
        grid-template-columns: 1fr;
    }

    .two {
        grid-template-columns: 1fr;
    }
}

/* ===== Clean Mobile Menu (ONE PLACE ONLY) ===== */

/* Desktop default */
#mobileMenu {
    display: none;
}

.hamb {
    display: none;
}
/* زر ☰ (عندك class hamb عليه) */

@@media (min-width: 641px) {
    nav ul {
        display: flex !important;
    }

    #mobileMenu {
        display: none !important;
    }

    #menuBtn {
        display: none !important;
    }
}

/* Mobile */
@@media (max-width: 640px) {
    nav ul {
        display: none !important;
    }

    .hamb {
        display: inline-flex !important;
    }
    /* يظهر زر ☰ */

    #mobileMenu {
        display: block !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height .25s ease;
    }

        #mobileMenu.open {
            max-height: 520px;
        }

        #mobileMenu .mobileLinks {
            display: flex !important;
            flex-direction: column !important;
            gap: 10px !important;
        }

            #mobileMenu .mobileLinks a.btn {
                display: block !important;
                width: 100% !important;
                text-align: center !important;
            }
}
/* ===== Desktop vs Mobile menu (FINAL) ===== */

/* Desktop */
@media (min-width: 641px) {
    nav ul {
        display: flex !important;
        flex-wrap: nowrap;
    }
    /* ما يلف */
    #menuBtn {
        display: none !important;
    }

    #mobileMenu {
        display: none !important;
    }
}

/* Mobile */
@media (max-width: 640px) {
    nav ul {
        display: none !important;
    }

    #menuBtn {
        display: inline-flex !important;
    }

    #mobileMenu {
        display: block !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height .25s ease;
    }

        #mobileMenu.open {
            max-height: 520px;
        }

        #mobileMenu .mobileLinks {
            display: flex !important;
            flex-direction: column !important;
            gap: 10px !important;
        }

            #mobileMenu .mobileLinks a.btn {
                display: block !important;
                width: 100% !important;
                text-align: center !important;
            }
}
@media (max-width: 768px) {
    .topbar {
        display: none;
    }
}
@media (max-width: 600px) {
    .topbar {
        display: none;
    }
}

@media (max-width: 768px) {

    .wrap {
        padding-left: 14px;
        padding-right: 14px;
    }

    .uploadGrid {
        display: block; /* إلغاء grid */
        width: 100%;
    }

        .uploadGrid .card {
            width: 100%;
            margin: 0;
        }

    .card {
        border-radius: 14px; /* اختياري لتنعيم الشكل */
    }

    .titleRow {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

        .titleRow .btn {
            width: 100%;
            text-align: center;
        }

    .uploadBox > div:last-child {
        flex-direction: column;
    }

    .uploadBox .btn {
        width: 100%;
    }
}