﻿/* =========================================
   ABOUT PAGE
   ========================================= */
.about-section,
.about-hero,
.about-cta {
    scroll-margin-top: 90px;
}
.about-header {
    z-index: 100;
    background: rgba(7,7,7,.92);
    border-bottom: 1px solid rgba(245,196,0,.12);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1050;
}

.about-navbar {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

    .about-navbar .brand-logo {
        width: 52px;
        height: 52px;
        flex-shrink: 0;
    }

        .about-navbar .brand-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

.about-nav-links {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-right: 0;
    margin-left: auto;
    direction: rtl;
}

    .about-nav-links a {
        position: relative;
        color: #aaa;
        font-size: 13px;
        position: relative;
        color: #aaa;
        font-size: 13px;
        padding: 10px 14px;
        transition: color .25s ease;
        white-space: nowrap;
    }

        .about-nav-links a:hover,
        .about-nav-links a.active {
            color: var(--gold2);
        }

            .about-nav-links a.active:after {
                content: "";
                position: absolute;
                bottom: 2px;
                height: 2px;
                background: var(--gold2);
                box-shadow: 0 0 10px rgba(245,196,0,.45);
                content: "";
                position: absolute;
                right: 14px;
                left: 14px;
                bottom: 2px;
                height: 2px;
                background: var(--gold2);
            }

.about-back-btn {
    border: 1px solid rgba(245,196,0,.35);
    color: var(--gold2);
    padding: 9px 15px;
    border-radius: 7px;
    font-size: 11px;
    transition: .25s;
}

    .about-back-btn:hover {
        background: var(--gold2);
        color: #080808;
    }


/* =========================================
   ABOUT HERO
   ========================================= */

.about-hero {
    min-height: 590px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 25% 50%, rgba(245,196,0,.10), transparent 30%), linear-gradient(110deg,#050505 0%,#0b0c0d 55%,#070707 100%);
}

.about-grid {
    position: absolute;
    inset: 0;
    opacity: .10;
    background-image: linear-gradient(rgba(245,196,0,.35) 1px, transparent 1px), linear-gradient(90deg,rgba(245,196,0,.35) 1px,transparent 1px);
    background-size: 70px 70px;
    animation: aboutGridMove 20s linear infinite;
}

@keyframes aboutGridMove {
    to {
        background-position: 70px 70px;
    }
}

.about-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(245,196,0,.07);
    filter: blur(100px);
    left: 8%;
    top: 20%;
}

.about-hero-content {
    position: relative;
    z-index: 3;
    max-width: 760px;
    padding: 90px 0;
}

.about-eyebrow {
    color: var(--gold2);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

    .about-eyebrow:before {
        content: "";
        display: inline-block;
        width: 38px;
        height: 2px;
        background: var(--gold2);
        margin-left: 10px;
        vertical-align: middle;
    }

.about-hero h1 {
    font-size: clamp(45px,6vw,76px);
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

    .about-hero h1 span {
        color: var(--gold2);
        display: block;
    }

.about-hero p {
    max-width: 650px;
    color: #999;
    font-size: 16px;
    line-height: 2;
}

.about-hero-meta {
    display: flex;
    margin-top: 45px;
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 25px;
    gap: 55px;
}

    .about-hero-meta div {
        display: flex;
        flex-direction: column;
    }

    .about-hero-meta strong {
        color: var(--gold2);
        font-size: 27px;
        line-height: 1;
    }

    .about-hero-meta small {
        color: #777;
        font-size: 10px;
        margin-top: 8px;
    }


/* =========================================
   GENERAL ABOUT SECTIONS
   ========================================= */

.about-section {
    position: relative;
    padding: 105px 0;
    background: #080808;
}

.about-section-dark {
    background: #0c0c0c;
    border-top: 1px solid rgba(255,255,255,.035);
    border-bottom: 1px solid rgba(255,255,255,.035);
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 55px;
}

    .section-heading span {
        color: var(--gold2);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 1.5px;
    }

    .section-heading h2 {
        font-size: 34px;
        font-weight: 900;
        margin: 8px 0 0;
    }

    .section-heading p {
        color: #666;
        font-size: 12px;
        margin: 0;
    }


/* =========================================
   INTRODUCTION
   ========================================= */

.about-intro-grid {
    display: grid;
    grid-template-columns: 1.5fr .8fr;
    gap: 70px;
    align-items: center;
}

.about-intro-text {
    color: #999;
    font-size: 14px;
    line-height: 2.2;
}

    .about-intro-text .lead {
        color: #ddd;
        font-size: 18px;
        line-height: 2;
    }

    .about-intro-text strong {
        color: var(--gold2);
    }

.about-intro-card {
    position: relative;
    min-height: 280px;
    padding: 35px;
    border: 1px solid rgba(245,196,0,.25);
    border-radius: 14px;
    background: linear-gradient(145deg,rgba(245,196,0,.07),rgba(255,255,255,.015));
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

    .about-intro-card:after {
        content: "V";
        position: absolute;
        left: -25px;
        bottom: -75px;
        font-size: 230px;
        font-weight: 900;
        color: rgba(245,196,0,.035);
    }

.about-card-line {
    width: 45px;
    height: 3px;
    background: var(--gold2);
    margin-bottom: 25px;
}

.about-intro-card span {
    color: #777;
    font-size: 10px;
    letter-spacing: 2px;
}

.about-intro-card strong {
    color: var(--gold2);
    font-size: 65px;
    line-height: 1;
    margin: 12px 0;
}

.about-intro-card small {
    color: #888;
    font-size: 11px;
}


/* =========================================
   HISTORY
   ========================================= */

.history-box {
    display: grid;
    grid-template-columns: 180px 35px 1fr;
    align-items: center;
    height:135px;
/*    min-height: 120px;
*/    padding: 2px;
    margin:5px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    background: linear-gradient(145deg,#121212,#090909);
}

.history-year {
    text-align: center;
}

    .history-year strong {
        display: block;
        color: var(--gold2);
        font-size: 45px;
        font-weight: 900;
    }

    .history-year span {
        color: #666;
        font-size: 10px;
    }

.history-line {
    height: 130px;
    width: 1px;
    background: linear-gradient(transparent,var(--gold2),transparent);
    position: relative;
}

    .history-line i {
        position: absolute;
        width: 9px;
        height: 9px;
        background: var(--gold2);
        border-radius: 50%;
        top: 50%;
        right: -4px;
        box-shadow: 0 0 15px rgba(245,196,0,.7);
    }

.history-content {
    padding-right: 40px;
}

    .history-content h3 {
        font-size: 21px;
        font-weight: 800;
    }

    .history-content p {
        color: #888;
        font-size: 13px;
        line-height: 2;
        max-width: 650px;
    }


/* =========================================
   ACTIVITIES
   ========================================= */

.activity-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

.activity-card {
    position: relative;
    padding: 38px;
    min-height: 330px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    background: linear-gradient(145deg,#151515,#0b0b0b);
    transition: .35s;
}

    .activity-card:hover {
        transform: translateY(-7px);
        border-color: rgba(245,196,0,.5);
        box-shadow: 0 20px 55px rgba(0,0,0,.35);
    }

.activity-number {
    position: absolute;
    top: 25px;
    left: 28px;
    color: rgba(245,196,0,.3);
    font-size: 12px;
    font-family: Arial,sans-serif;
}

.activity-icon {
    width: 58px;
    height: 58px;
    border: 1px solid rgba(245,196,0,.35);
    border-radius: 11px;
    display: grid;
    place-items: center;
    color: var(--gold2);
    font-size: 25px;
    margin-bottom: 25px;
}

.activity-card h3 {
    font-size: 21px;
    font-weight: 800;
}

.activity-card p {
    color: #888;
    font-size: 13px;
    line-height: 2;
    max-width: 500px;
}

.activity-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 25px;
}

    .activity-tags span {
        padding: 5px 9px;
        border: 1px solid rgba(245,196,0,.18);
        border-radius: 5px;
        color: #999;
        font-size: 9px;
    }


/* =========================================
   CAPABILITIES
   ========================================= */

.capability-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 12px;
}

.capability-card {
    position: relative;
    min-height: 245px;
    padding: 30px 28px;
    overflow: hidden;
    background: radial-gradient( circle at 85% 15%, rgba(245,196,0,.10), transparent 32% ), linear-gradient( 145deg, rgba(255,255,255,.045), rgba(255,255,255,.012) );
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    backdrop-filter: blur(8px);
    transition: transform .4s ease, border-color .4s ease, box-shadow .4s ease, background .4s ease;
}
    .capability-card::before {
        content: "";
        position: absolute;
        width: 130px;
        height: 130px;
        top: -65px;
        left: -65px;
        border-radius: 50%;
        background: rgba(245,196,0,.08);
        filter: blur(25px);
        transition: .5s ease;
    }
    .capability-card::after {
        content: "";
        position: absolute;
        width: 150px;
        height: 150px;
        left: -45px;
        bottom: -65px;
        opacity: .25;
        background: linear-gradient( 90deg, transparent 48%, rgba(245,196,0,.35) 49%, transparent 50% ), linear-gradient( 0deg, transparent 48%, rgba(245,196,0,.35) 49%, transparent 50% );
        background-size: 24px 24px;
        transform: rotate(15deg);
        pointer-events: none;
    }

    .capability-card:hover {
        transform: translateY(-7px);
        border-color: rgba(245,196,0,.55);
        background: radial-gradient( circle at 85% 15%, rgba(245,196,0,.15), transparent 35% ), linear-gradient( 145deg, rgba(255,255,255,.065), rgba(255,255,255,.018) );
        box-shadow: 0 20px 45px rgba(0,0,0,.35), 0 0 25px rgba(245,196,0,.08);
    }
        .capability-card:hover::before {
            transform: scale(1.5);
            background: rgba(245,196,0,.13);
        }
        .capability-card:hover > strong {
            color: #080808;
            background: var(--gold2);
            border-color: var(--gold2);
            box-shadow: 0 0 15px rgba(245,196,0,.35);
        }
        .capability-card:hover h3 {
            color: var(--gold2);
        }
        .capability-card:hover p {
            color: #999;
        }
        .capability-card:hover .capability-line {
            width: 70px;
            opacity: 1;
        }
    .capability-card > strong {
        font-family: Arial,sans-serif;
        position: relative;
        z-index: 2;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        border: 1px solid rgba(245,196,0,.30);
        border-radius: 8px;
        color: var(--gold2);
        font-size: 10px;
        background: rgba(245,196,0,.04);
        transition: .35s ease;
    }

    .capability-card h3 {
        position: relative;
        z-index: 2;
        margin: 25px 0 12px;
        color: #f5f5f5;
        font-size: 17px;
        font-weight: 800;
        transition: .35s ease;
    }

    .capability-card p {
        position: relative;
        z-index: 2;
        color: #7f7f7f;
        font-size: 11px;
        line-height: 2;
        transition: .35s ease;
    }
    /* خط طلایی پایین */

    .capability-card .capability-line {
        position: absolute;
        right: 28px;
        bottom: 20px;
        width: 35px;
        height: 2px;
        background: var(--gold2);
        opacity: .45;
        transition: width .4s ease, opacity .4s ease;
    }

/* =========================================
   CTA
   ========================================= */

.about-cta {
    padding: 75px 0;
    background: #080808;
}

.about-cta-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 45px 50px;
    border: 1px solid rgba(245,196,0,.25);
    border-radius: 15px;
    background: radial-gradient(circle at 80% 50%,rgba(245,196,0,.10),transparent 35%), #101010;
    overflow: hidden;
}

    .about-cta-box span {
        color: #777;
        font-size: 9px;
        letter-spacing: 2px;
    }

    .about-cta-box h2 {
        font-size: 27px;
        margin: 10px 0 0;
    }

        .about-cta-box h2 b {
            color: var(--gold2);
        }


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 991.98px) {

    .about-navbar {
        min-height: 70px;
    }

    .about-nav-links {
        display: none;
    }

    .about-hero {
        min-height: 600px;
    }

    .about-hero-content {
        padding: 75px 0;
    }

    .about-hero h1 {
        font-size: 45px;
    }

    .about-hero-meta {
        gap: 25px;
    }

    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .activity-grid {
        grid-template-columns: 1fr;
    }

    .capability-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .history-box {
        grid-template-columns: 100px 20px 1fr;
        padding: 25px;
    }

    .history-year strong {
        font-size: 30px;
    }

    .history-content {
        padding-right: 20px;
    }

    .about-cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575.98px) {

    .about-hero h1 {
        font-size: 39px;
    }

    .about-hero p {
        font-size: 13px;
    }

    .about-hero-meta {
        gap: 18px;
    }

        .about-hero-meta strong {
            font-size: 22px;
        }

    .about-section {
        padding: 75px 0;
    }

    .section-heading h2 {
        font-size: 28px;
    }

    .about-intro-card {
        min-height: 230px;
    }

    .history-box {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .history-line {
        width: 100%;
        height: 1px;
    }

        .history-line i {
            top: -4px;
            right: 50%;
        }

    .history-content {
        padding: 0;
    }

    .capability-grid {
        grid-template-columns: 1fr;
    }

    .about-cta-box {
        padding: 30px;
    }
}
/* =========================================
   HISTORY BOX HOVER EFFECT
   ========================================= */

.history-box {
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease, background .35s ease;
}

    .history-box:hover {
        transform: scale(1.015);
        border-color: rgba(245,196,0,.70);
        box-shadow: 0 18px 45px rgba(0,0,0,.40), 0 0 28px rgba(245,196,0,.10);
        background: linear-gradient( 145deg, #161616, #0b0b0b );
    }

        .history-box:hover .history-year strong {
            color: var(--gold2);
            text-shadow: 0 0 16px rgba(245,196,0,.35);
        }

        .history-box:hover .history-line {
            background: linear-gradient( transparent, var(--gold2), transparent );
        }

            .history-box:hover .history-line i {
                transform: scale(1.3);
                box-shadow: 0 0 10px rgba(245,196,0,.9), 0 0 22px rgba(245,196,0,.4);
            }
/* =========================================
   VISION & MISSION
   ========================================= */

.about-vision-mission {
    position: relative;
    overflow: hidden;
    background: radial-gradient( circle at 15% 50%, rgba(245,196,0,.055), transparent 28% ), radial-gradient( circle at 85% 50%, rgba(245,196,0,.035), transparent 30% ), #090909;
}


    /* خط ظریف بالای سکشن */

    .about-vision-mission::before {
        content: "";
        position: absolute;
        top: 0;
        left: 8%;
        right: 8%;
        height: 1px;
        background: linear-gradient( 90deg, transparent, rgba(245,196,0,.25), transparent );
    }


/* Grid */

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}


/* Card */

.vision-card {
    position: relative;
    min-height: 330px;
    padding: 38px 38px 34px;
    overflow: hidden;
    background: linear-gradient( 145deg, rgba(255,255,255,.055), rgba(255,255,255,.012) );
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
    transition: transform .4s ease, border-color .4s ease, box-shadow .4s ease, background .4s ease;
}


/* Glow */

.vision-card-glow {
    position: absolute;
    width: 260px;
    height: 260px;
    top: -130px;
    left: -100px;
    border-radius: 50%;
    background: rgba(245,196,0,.075);
    filter: blur(55px);
    pointer-events: none;
    transition: .5s ease;
}


/* Grid تکنولوژیک */

.vision-card::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    left: -60px;
    bottom: -100px;
    opacity: .20;
    background: linear-gradient( 90deg, transparent 48%, rgba(245,196,0,.35) 49%, transparent 50% ), linear-gradient( 0deg, transparent 48%, rgba(245,196,0,.35) 49%, transparent 50% );
    background-size: 25px 25px;
    transform: rotate(18deg);
    pointer-events: none;
}


/* شماره */

.vision-number {
    position: absolute;
    top: 25px;
    left: 28px;
    color: rgba(255,255,255,.16);
    font-family: Arial,sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}


/* Icon */

.vision-icon {
    position: relative;
    z-index: 2;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    border: 1px solid rgba(245,196,0,.28);
    background: rgba(245,196,0,.045);
    color: var(--gold2);
    font-size: 24px;
    box-shadow: inset 0 0 18px rgba(245,196,0,.04);
    transition: .4s ease;
}


.vision-content {
    position: relative;
    z-index: 2;
    margin-top: 27px;
    direction: rtl;
}


.vision-label {
    display: block;
    margin-bottom: 7px;
    color: var(--gold2);
    font-family: Arial,sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    direction: ltr;
}


.vision-content h3 {
    margin: 0 0 15px;
    color: #f5f5f5;
    font-size: 25px;
    font-weight: 800;
    transition: .35s ease;
}


.vision-content p {
    max-width: 560px;
    margin: 0;
    color: #8b8b8b;
    font-size: 13px;
    line-height: 2.15;
    transition: .35s ease;
}


/* خط پایین */

.vision-line {
    position: absolute;
    right: 38px;
    bottom: 24px;
    width: 42px;
    height: 2px;
    background: var(--gold2);
    opacity: .5;
    transition: width .4s ease, opacity .4s ease;
}


/* =========================================
   HOVER
   ========================================= */

.vision-card:hover {
    transform: translateY(-7px);
    border-color: rgba(245,196,0,.55);
    background: linear-gradient( 145deg, rgba(245,196,0,.065), rgba(255,255,255,.015) );
    box-shadow: 0 25px 65px rgba(0,0,0,.4), 0 0 30px rgba(245,196,0,.07);
}


    .vision-card:hover .vision-card-glow {
        transform: scale(1.35);
        background: rgba(245,196,0,.12);
    }


    .vision-card:hover .vision-icon {
        color: #080808;
        background: var(--gold2);
        border-color: var(--gold2);
        box-shadow: 0 0 20px rgba(245,196,0,.25);
        transform: translateY(-2px);
    }


    .vision-card:hover h3 {
        color: var(--gold2);
    }


    .vision-card:hover p {
        color: #a3a3a3;
    }


    .vision-card:hover .vision-line {
        width: 80px;
        opacity: 1;
    }


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 991.98px) {

    .vision-mission-grid {
        grid-template-columns: 1fr;
    }

    .vision-card {
        min-height: 300px;
    }
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 575.98px) {

    .vision-card {
        min-height: 330px;
        padding: 30px 24px 32px;
    }

    .vision-number {
        left: 20px;
        top: 20px;
    }

    .vision-content h3 {
        font-size: 22px;
    }

    .vision-content p {
        font-size: 12px;
        line-height: 2;
    }

    .vision-line {
        right: 24px;
    }
}