

    main {
        font-family: 'Tajawal', sans-serif;
        overflow-x: hidden;
    }

    /* --- تأثيرات الحركة (Reveal) التي كانت مفقودة في التصميم الأول --- */
    .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
    }
    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

    /* --- Hero Section --- */
    .corporate-hero {
        padding: 180px 5% 120px;
        background-size: 40px 40px;
        text-align: center;
        border-bottom: 1px solid var(--border-color);
        position: relative;
        background-color: var(--soft-gray);
    }

    .corporate-badge {
        display: inline-flex;
        align-items: center;
        padding: 8px 24px;
        background: white;
        border: 1px solid rgba(0, 104, 55, 0.2);
        border-radius: 100px;
        font-size: 13px;
        font-weight: 800;
        color: var(--brand-main);
        letter-spacing: 1px;
        margin-bottom: 25px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    }

    .corporate-title {
        font-size: clamp(2.2rem, 4.5vw, 4rem);
        font-weight: 900;
        color: var(--text-dark);
        line-height: 1.3;
        margin-bottom: 25px;
    }

    .corporate-subtitle {
        font-size: 1.2rem;
        color: var(--text-main);
        max-width: 850px;
        margin: 0 auto;
        line-height: 1.9;
        font-weight: 500;
    }

    /* --- Stats Bar --- */
    .stats-container {
        max-width: 1200px;
        margin: -50px auto 80px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border: 1px solid white;
        border-radius: 30px;
        box-shadow: var(--card-shadow);
        display: grid;
        grid-template-columns: 1fr;
        padding: 30px 0;
        position: relative;
        z-index: 10;
    }

    @media (min-width: 768px) {
        .stats-container { grid-template-columns: repeat(3, 1fr); }
    }

    .stat-box {
        padding: 20px 30px;
        text-align: center;
        border-left: 1px solid transparent;
        position: relative;
    }

    @media (min-width: 768px) {
        .stat-box:not(:last-child)::after {
            content: '';
            position: absolute;
            left: 0;
            top: 20%;
            height: 60%;
            width: 1px;
            background: linear-gradient(to bottom, transparent, var(--border-color), transparent);
        }
    }

    .stat-value {
        display: block;
        font-size: 3rem;
        font-weight: 900;
        background: linear-gradient(135deg, var(--brand-main), #00a859);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 8px;
    }

    .stat-label {
        font-size: 1rem;
        font-weight: 700;
        color: var(--text-main);
    }

    /* --- Professional Timeline --- */
    .timeline-section {
        max-width: 1000px;
        margin: 0 auto 120px;
        padding: 0 5%;
        position: relative;
    }

    .timeline-track {
        position: absolute;
        top: 0;
        bottom: 0;
        right: 5%;
        width: 3px;
        background: linear-gradient(to bottom, var(--brand-main) 0%, var(--border-color) 15%, var(--border-color) 100%);
        border-radius: 3px;
    }

    @media (min-width: 768px) {
        .timeline-track { right: calc(5% + 40px); }
    }

    .timeline-item {
        position: relative;
        margin-bottom: 50px;
        padding-right: 60px;
    }

    @media (min-width: 768px) {
        .timeline-item { padding-right: 120px; margin-bottom: 70px; }
    }

    .timeline-marker {
        position: absolute;
        right: -10px;
        top: 40px;
        width: 24px;
        height: 24px;
        background: white;
        border: 5px solid var(--brand-main);
        border-radius: 50%;
        z-index: 2;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 0 0 6px rgba(0, 104, 55, 0.1);
    }

    @media (min-width: 768px) {
        .timeline-marker { right: 30px; top: 50px; }
    }

    /* كرت المعلومات التجاري */
    .timeline-card {
        background: white;
        border: 1px solid rgba(226, 232, 240, 0.8);
        border-radius: 28px;
        padding: 35px;
        transition: all 0.4s ease;
        display: flex;
        flex-direction: column;
        gap: 25px;
        box-shadow: var(--card-shadow);
    }

    @media (min-width: 768px) {
        .timeline-card { flex-direction: row; align-items: flex-start; padding: 45px; }
    }

    .timeline-card:hover {
        border-color: rgba(0, 104, 55, 0.3);
        box-shadow: var(--hover-shadow);
        transform: translateY(-5px);
    }

    .timeline-card:hover + .timeline-marker {
        background: var(--brand-main);
        transform: scale(1.3);
        box-shadow: 0 0 0 8px rgba(0, 104, 55, 0.2);
    }

    /* قسم الأيقونة والتاريخ */
    .card-meta {
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        width: 140px;
    }

    .icon-wrapper {
        width: 65px;
        height: 65px;
        background: linear-gradient(135deg, var(--soft-gray) 0%, #ffffff 100%);
        box-shadow: inset 0 2px 4px rgba(0,0,0,0.02), 0 8px 16px rgba(0,0,0,0.04);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.4s ease;
    }

    .icon-wrapper i {
        font-size: 26px;
        color: var(--brand-main);
        transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .timeline-card:hover .icon-wrapper { 
        background: var(--brand-main); 
    }
    
    .timeline-card:hover .icon-wrapper i { 
        color: white; 
        transform: scale(1.3); 
    }

    .year-tag {
        font-size: 1.4rem;
        font-weight: 900;
        color: var(--text-dark);
        background: var(--soft-gray);
        padding: 4px 12px;
        border-radius: 8px;
    }

    /* محتوى الكرت */
    .card-content { flex-grow: 1; }
    
    .card-title {
        font-size: 1.5rem;
        font-weight: 900;
        color: var(--text-dark);
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .card-text {
        font-size: 1.05rem;
        color: var(--text-main);
        line-height: 1.9;
        font-weight: 500;
    }

    /* محطة 2025 (تصميم مميز للمستقبل) */
    .future-card {
        background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
        border: 2px solid rgba(0, 104, 55, 0.2);
    }

    .future-badge {
        display: inline-block;
        background: linear-gradient(135deg, var(--text-dark), #334155);
        color: white;
        padding: 6px 16px;
        border-radius: 8px;
        font-size: 0.85rem;
        font-weight: 800;
        margin-bottom: 15px;
        letter-spacing: 1px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
        .profile-section {
        padding: 80px 0;
        border-bottom: 1px solid #e2e8f0;
    }

    .profile-image {
        width: 100%;
        max-width: 480px;
        height: 580px;
        object-fit: cover;
        border-radius: 24px;
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    }

    /* زخرفة خفيفة خلف النص */
    .quote-mark {
        font-family: serif;
        font-size: 120px;
        color: #006837;
        opacity: 0.1;
        position: absolute;
        top: -40px;
        right: -20px;
        line-height: 1;
    }