/*=========================================================
                    organization
=========================================================*/

.organization {
    position: relative;
    padding: 30px 0;
    background: linear-gradient(180deg,#061823 0%,#081f2b 100%);
    overflow: hidden;
}

    .organization::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 15% 20%,rgba(20,217,235,.08),transparent 35%), radial-gradient(circle at 85% 80%,rgba(20,217,235,.05),transparent 30%);
        pointer-events: none;
    }


/*=========================================================
                    HEADER
=========================================================*/

.organization-header {
    max-width: 1050px;
    margin: 0 auto 60px;
    text-align: center;
}

.organization-subtitle {
    display: inline-block;
    color: #14d9eb;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 22px;
    position: relative;
}

    .organization-subtitle::before,
    .organization-subtitle::after {
        content: "";
        position: absolute;
        top: 50%;
        width: 70px;
        height: 2px;
        background: #14d9eb;
        opacity: .45;
    }

    .organization-subtitle::before {
        right: calc(100% + 18px);
    }

    .organization-subtitle::after {
        left: calc(100% + 18px);
    }

.organization-title {
    font-size: clamp(32px, 5vw, 58px);
    color: #16dff2;
    font-weight: 900;
    margin-bottom: 35px;
    line-height: 1.35;
}

.organization-highlight {
    max-width: 1100px;
    margin: auto;
    padding: 30px 38px;
    border-radius: 20px;
    background: rgba(20,217,235,.08);
    border: 1px solid rgba(20,217,235,.22);
    color: #fff;
    font-size: 21px;
    font-weight: 700;
    line-height: 2.2;
    box-shadow: 0 0 45px rgba(20,217,235,.08);
}


/*=========================================================
                    IMAGE & STATS (ادغام شده)
=========================================================*/

.organization-image {
    display: flex;
    justify-content: center;
    margin-bottom: 140px;
}

    .organization-image img {
        width: 100%;
        max-width: 1000px;
        display: block;
        border-radius: 26px;
        border: 1px solid var(--border-primary);
        box-shadow: 0 30px 80px rgba(0,0,0,.40), 0 0 45px rgba(20,217,235,.10);
        transition: .45s;
        cursor: zoom-in;
    }

    .organization-image:hover img {
        transform: scale(1.02);
        border-color: var(--color-primary);
        box-shadow: 0 35px 90px rgba(0,0,0,.45), 0 0 25px rgba(20,217,235,.35), 0 0 60px rgba(20,217,235,.45), 0 0 120px rgba(20,217,235,.25);
    }



/* stats */
.organization-stats {
    position: absolute;
    left: 50%;
    bottom: -60px;
    transform: translateX(-50%);
    display: flex;
    gap: 24px;
    z-index: 10;
}

/*=========================================================
                    CONTENT
=========================================================*/

.organization-content {
    max-width: 1150px;
    margin: auto;
}

.organization-text {
    color: #d6e2e8;
    font-size: 18px;
    line-height: 1.45;
    text-align: justify;
    margin-bottom: 28px;
}

    .organization-text strong {
        color: #14d9eb;
        font-weight: 800;
    }


/*=========================================================
                    FEATURES
=========================================================*/

.organization-features {
    margin-top: 55px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 22px;
}

.organization-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 24px;
    border-radius: 16px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    transition: .35s;
}

    .organization-feature:hover {
        transform: translateY(-6px);
        border-color: rgba(20,217,235,.40);
        background: rgba(20,217,235,.08);
    }

    .organization-feature i {
        color: #14d9eb;
        font-size: 24px;
    }

    .organization-feature span {
        color: #fff;
        font-size: 17px;
        font-weight: 700;
    }


/*=========================================================
                    BUTTON
=========================================================*/

.organization-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-top: 45px;
    padding: 18px 36px;
    background: #14d9eb;
    color: #041018;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 800;
    transition: .35s;
}

    .organization-button:hover {
        transform: translateY(-4px);
        background: #33e6f5;
        box-shadow: 0 15px 35px rgba(20,217,235,.28);
    }

    .organization-button i {
        transition: .35s;
    }

    .organization-button:hover i {
        transform: translateX(-6px);
    }


/*=========================================================
                    RESPONSIVE
=========================================================*/

@media(max-width:1200px) {
    .organization-title {
        font-size: 48px;
    }

    .organization-highlight {
        font-size: 19px;
    }
}

@media(max-width:992px) {
    .organization {
        padding: 90px 0;
    }

    .organization-header {
        margin-bottom: 45px;
    }

    .organization-title {
        font-size: 40px;
    }

    .organization-highlight {
        padding: 24px;
        font-size: 18px;
    }

    .organization-content {
        max-width: 100%;
    }

    .organization-features {
        grid-template-columns: 1fr;
    }

    .organization-image {
        margin-bottom: 90px;
    }

    .organization-stats {
        gap: 15px;
        bottom: -50px;
    }

    .stat-card {
        width: 170px;
        height: 95px;
    }

    .stat-number {
        font-size: 34px;
    }

    .stat-title {
        font-size: 15px;
    }
}

@media(max-width:768px) {
    .organization {
        padding: 70px 0;
    }

    .organization-title {
        font-size: 32px;
    }

    .organization-subtitle {
        font-size: 20px;
    }

        .organization-subtitle::before,
        .organization-subtitle::after {
            width: 30px;
        }

    .organization-highlight {
        font-size: 16px;
        line-height: 2.2;
        padding: 20px;
    }

    .organization-image {
        margin-bottom: 40px;
    }

    .organization-stats {
        position: static;
        transform: none;
        margin-top: 25px;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .stat-card {
        width: 100%;
        max-width: 320px;
        height: 90px;
    }

    .organization-text {
        font-size: 15px;
        line-height: 1.5;
    }

    .organization-feature {
        padding: 18px;
    }

    .organization-button {
        width: 100%;
        justify-content: center;
    }
}

/*================ Full Screen Viewer ================*/

.chart-viewer {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0,0,0,.92);
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
    animation: fadeIn .25s;
}

    .chart-viewer.show {
        display: flex;
    }

    .chart-viewer img {
        max-width: 95vw;
        max-height: 95vh;
        object-fit: contain;
        border-radius: 10px;
        box-shadow: 0 20px 60px rgba(0,0,0,.5);
    }

#chartClose {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #fff;
    font-size: 46px;
    cursor: pointer;
    line-height: 1;
    transition: .25s;
}

    #chartClose:hover {
        color: #14d9eb;
        transform: rotate(90deg);
    }

@keyframes fadeIn {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
