﻿
:root {
    /* الألوان الأساسية - موحدة */
    --primary-color: #28a745;
    --primary-dark: #218838;
    --primary-light: #34ce57;
    --primary-hover: #1e7e34;
    --primary-transparent: rgba(40, 167, 69, 0.1);
    --secondary-color: #6c757d;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --info: #17a2b8;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
    --white: #ffffff;
    /* ألوان مساعدة */
    --gold-accent: #FFC107;
    --gold-dark: #f57c00;
    --dark-green: #1e7e34;
    /* التدرجات الموحدة */
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    --gradient-secondary: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    --gradient-gold: linear-gradient(135deg, var(--gold-dark), var(--gold-accent));
    --gradient-hero: linear-gradient(135deg, rgba(30, 126, 52, 0.9), rgba(52, 206, 87, 0.8));
    /* الظلال الموحدة */
    --shadow-sm: 0 .125rem .25rem rgba(0,0,0,.075);
    --shadow-md: 0 .5rem 1rem rgba(0,0,0,.15);
    --shadow-lg: 0 1rem 3rem rgba(0,0,0,.175);
    --shadow-gold: 0 4px 20px rgba(255, 193, 7, 0.3);
    /* الحواف الموحدة */
    --border-radius-sm: 0.25rem;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 1rem;
    --border-radius-xl: 2rem;
    /* الانتقالات الموحدة */
    --transition-fast: all 0.2s ease;
    --transition-base: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    /* الخطوط الموحدة */
    --font-primary: 'Cairo', sans-serif;
    --font-secondary: 'Tajawal', sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
    background-color: #fafafa;
}

/* فواصل عالمية موحدة */
.section-divider-global {
    width: 120px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
    margin: 4rem auto;
    position: relative;
    opacity: 0.8;
}

    .section-divider-global::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 12px;
        height: 12px;
        background: var(--gold-accent);
        border-radius: 50%;
        box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.2);
    }

/* أنماط الأقسام الموحدة */
.section-enhanced {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.section-header-global {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-title-global {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle-global {
    font-size: 1.3rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    font-weight: 400;
}

.title-decoration-global {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.decoration-line-global {
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.decoration-icon-global {
    margin: 0 1rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: var(--shadow-sm);
}

/* البطاقات الموحدة */
.card-enhanced {
    background: #fff;
    border-radius: var(--border-radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 1px solid rgba(40, 167, 69, 0.08);
    position: relative;
    overflow: hidden;
    height: 100%;
}

    .card-enhanced::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--gradient-primary);
    }

    .card-enhanced:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

/* الأزرار الموحدة */
.btn-enhanced {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-base);
    border: 2px solid transparent;
    font-family: var(--font-primary);
    cursor: pointer;
    font-size: 1rem;
    min-width: 180px;
    justify-content: center;
}

.btn-primary-enhanced,
.btn-primary-hero {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: var(--shadow-md);
}

    .btn-primary-enhanced:hover,
    .btn-primary-hero:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
        color: #fff;
        background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    }

.btn-secondary-enhanced,
.btn-secondary-hero {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

    .btn-secondary-enhanced:hover,
    .btn-secondary-hero:hover {
        background: var(--primary-color);
        color: #fff;
        transform: translateY(-3px);
        box-shadow: var(--shadow-md);
    }

.btn-gold-enhanced,
.btn-gold-hero {
    background: var(--gradient-gold);
    color: #fff;
    box-shadow: var(--shadow-gold);
}

.btn-gold-hero,
.btn-gold-enhanced,
.join-btn,
.news-btn,
.btn-investment,
.btn-special {
    background: var(--gradient-gold) !important;
    border: 2px solid var(--gold-accent) !important;
    color: #fff !important;
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    border-radius: 50px !important;
    padding: 1rem 2.5rem !important;
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.4) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
}

    .btn-gold-hero::before,
    .btn-gold-enhanced::before,
    .join-btn::before,
    .news-btn::before,
    .btn-investment::before,
    .btn-special::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: -100% !important;
        width: 100% !important;
        height: 100% !important;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent) !important;
        transition: left 0.6s !important;
    }

    .btn-gold-hero:hover,
    .btn-gold-enhanced:hover,
    .join-btn:hover,
    .news-btn:hover,
    .btn-investment:hover,
    .btn-special:hover {
        background: linear-gradient(135deg, var(--gold-dark), var(--warning)) !important;
        box-shadow: 0 8px 30px rgba(255, 193, 7, 0.6) !important;
        transform: translateY(-3px) scale(1.05) !important;
        border-color: var(--gold-dark) !important;
    }

        .btn-gold-hero:hover::before,
        .btn-gold-enhanced:hover::before,
        .join-btn:hover::before,
        .news-btn:hover::before,
        .btn-investment:hover::before,
        .btn-special:hover::before {
            left: 100% !important;
        }

/* الشارات المميزة مع تأثيرات بصرية */
.global-badge,
.global-badge-enhanced,
.global-achievement-badge,
.story-badge,
.card-badge,
.badge,
.badge-primary,
.badge-secondary,
.badge-success,
.badge-warning,
.badge-info {
    background: var(--gradient-gold) !important;
    box-shadow: var(--shadow-gold) !important;
    color: #fff !important;
    border-radius: 25px !important;
    padding: 0.5rem 1rem !important;
    font-weight: 600 !important;
    position: relative !important;
    overflow: hidden !important;
    animation: pulse-gold 2s infinite !important;
    border: 2px solid rgba(255, 193, 7, 0.3) !important;
}

    .global-badge::before,
    .global-badge-enhanced::before,
    .global-achievement-badge::before,
    .story-badge::before,
    .card-badge::before,
    .badge::before,
    .badge-primary::before,
    .badge-secondary::before,
    .badge-success::before,
    .badge-warning::before,
    .badge-info::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: -100% !important;
        width: 100% !important;
        height: 100% !important;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent) !important;
        animation: shine 3s infinite !important;
    }

@keyframes pulse-gold {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(255, 193, 7, 0.3);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 6px 25px rgba(255, 193, 7, 0.6);
        transform: scale(1.02);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* الأيقونات الموحدة */
.icon-enhanced {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

    .icon-enhanced:hover {
        transform: scale(1.1);
        box-shadow: var(--shadow-md);
    }

/* الشارات الموحدة */
.global-badge-enhanced,
.global-badge,
.global-achievement-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-gold);
    color: #fff;
    padding: 0.6rem 1.8rem;
    border-radius: 30px;
    font-weight: var(--font-weight-bold);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-gold);
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

    .global-badge-enhanced i,
    .global-badge i,
    .global-achievement-badge i {
        font-size: 1.2rem;
    }

/* Responsive Typography */
@media (max-width: 992px) {
    .section-title-global {
        font-size: 2.3rem;
    }

    .section-subtitle-global {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .section-enhanced {
        padding: 3rem 0;
    }

    .section-title-global {
        font-size: 2rem;
    }

    .section-subtitle-global {
        font-size: 1rem;
    }

    .card-enhanced {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .section-title-global {
        font-size: 1.8rem;
    }

    .btn-enhanced {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        min-width: 150px;
    }
}

/* Hero Section Advanced Styles */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--primary-green);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('~/assets/images/9.jpg') no-repeat center center;
    background-size: cover;
    z-index: 0;
}

.overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: 1;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.shape-1, .shape-2, .shape-3 {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.global-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 167, 38, 0.9);
    color: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.title-line-1 {
    display: block;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.title-line-2 {
    display: block;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.logo-container {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.logo-ring {
    position: relative;
    width: 150px;
    height: 150px;
}

    .logo-ring::before {
        content: '';
        position: absolute;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        border: 3px solid var(--gold-accent);
        border-radius: 50%;
        opacity: 0.6;
        animation: pulse-ring 3s infinite;
    }

.hero-logo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-medium);
}

.floating {
    animation: float 4s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.highlight-text {
    color: var(--gold-accent);
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-primary-hero, .btn-secondary-hero, .btn-gold-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
    min-width: 200px;
    justify-content: center;
    font-family: var(--font-primary);
}

.btn-primary-hero {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: var(--shadow-soft);
}

    .btn-primary-hero:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-strong);
        color: #fff;
    }

.btn-secondary-hero {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.8);
}

    .btn-secondary-hero:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: #fff;
        color: #fff;
        transform: translateY(-3px);
    }

.btn-gold-hero {
    background: var(--gradient-gold);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 167, 38, 0.4);
}

    .btn-gold-hero:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(255, 167, 38, 0.6);
        color: #fff;
    }

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.scroll-text {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

    .scroll-arrow i {
        font-size: 1.5rem;
        color: var(--gold-accent);
    }

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.animate-typing {
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid var(--gold-accent);
    animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes blink-caret {
    from, to {
        border-color: transparent
    }

    50% {
        border-color: var(--gold-accent)
    }
}

.animate-fade-in {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-section {
        min-height: 90vh;
    }

    .title-line-1 {
        font-size: 1.8rem;
    }

    .title-line-2 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .logo-ring {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 1rem;
    }

    .title-line-1 {
        font-size: 1.5rem;
    }

    .title-line-2 {
        font-size: 1.8rem;
        white-space: normal;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .btn-primary-hero, .btn-secondary-hero, .btn-gold-hero {
        width: 100%;
        max-width: 300px;
        padding: 0.8rem 1.5rem;
    }

    .logo-ring {
        width: 80px;
        height: 80px;
    }

    .global-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
}

@media (max-width: 576px) {
    .title-line-1 {
        font-size: 1.3rem;
    }

    .title-line-2 {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .logo-ring {
        width: 70px;
        height: 70px;
    }
}
.partnership-section {
    background: linear-gradient(135deg, #f8fffe 0%, #e8f8f5 50%, #f0f9ff 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

    .partnership-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e0f2f1" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
        opacity: 0.3;
        z-index: 0;
    }

.section-header {
    position: relative;
    z-index: 1;
    margin-bottom: 4rem;
}

.global-achievement-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-gold);
    color: #fff;
    padding: 0.6rem 1.8rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-medium);
    letter-spacing: 0.5px;
}

    .global-achievement-badge i {
        font-size: 1.2rem;
    }

.section-title {
    margin-bottom: 2rem;
}

.title-highlight {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.title-subtitle {
    display: block;
    font-size: 1.3rem;
    color: var(--dark-green);
    font-weight: 500;
    opacity: 0.8;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.decoration-line {
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.decoration-icon {
    margin: 0 1rem;
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.announcement-container {
    position: relative;
    z-index: 1;
}

.achievement-card {
    background: #fff;
    border-radius: var(--border-radius-large);
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(46, 125, 50, 0.1);
    position: relative;
    overflow: hidden;
}

    .achievement-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--gradient-primary);
    }

.achievement-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.achievement-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    flex-shrink: 0;
}

.achievement-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.achievement-text p {
    color: var(--dark-green);
    font-size: 1.1rem;
    opacity: 0.8;
    margin: 0;
}

.announcement-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 2rem;
}

.leadership-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(255, 167, 38, 0.1), rgba(255, 193, 7, 0.05));
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--gold-accent);
}

    .leadership-highlight i {
        color: var(--gold-accent);
        font-size: 1.5rem;
    }

    .leadership-highlight span {
        font-weight: 600;
        color: var(--dark-green);
        font-size: 1.1rem;
    }

.phases-section {
    background: #fff;
    border-radius: var(--border-radius-large);
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
}

.phases-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 2.5rem;
    text-align: center;
    justify-content: center;
}

    .phases-title i {
        color: var(--gold-accent);
        font-size: 2rem;
    }

.phases-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.phase-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    position: relative;
}

    .phase-item:not(:last-child)::after {
        content: '';
        position: absolute;
        left: 25px;
        top: 60px;
        bottom: -30px;
        width: 2px;
        background: linear-gradient(to bottom, var(--accent-green), rgba(76, 175, 80, 0.3));
    }

.phase-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-soft);
}

.phase-content {
    flex: 1;
    background: rgba(248, 249, 250, 0.8);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(46, 125, 50, 0.1);
}

    .phase-content h4 {
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--primary-green);
        margin-bottom: 0.5rem;
    }

.phase-period {
    color: var(--gold-accent);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.phase-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.phase-activities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.activity-tag {
    background: var(--gradient-primary);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.phase-highlight, .phase-impact {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(76, 175, 80, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--accent-green);
}

    .phase-highlight i, .phase-impact i {
        color: var(--accent-green);
        font-size: 1.2rem;
    }

    .phase-highlight span, .phase-impact span {
        font-weight: 600;
        color: var(--dark-green);
    }

/* Responsive Design */
@media (max-width: 992px) {
    .title-highlight {
        font-size: 2rem;
    }

    .title-subtitle {
        font-size: 1.1rem;
    }

    .achievement-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .phases-timeline {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .partnership-section {
        padding: 3rem 0;
    }

    .achievement-card, .phases-section {
        padding: 1.5rem;
    }

    .phase-item {
        flex-direction: column;
        gap: 1rem;
    }

        .phase-item::after {
            display: none;
        }

    .phase-activities {
        justify-content: center;
    }

    .title-highlight {
        font-size: 1.8rem;
    }

    .announcement-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .title-highlight {
        font-size: 1.5rem;
    }

    .title-subtitle {
        font-size: 1rem;
    }

    .phases-title {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
}
.partnership-section {
    background: linear-gradient(135deg, #f8fffe 0%, #e8f8f5 50%, #f0f9ff 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

    .partnership-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e0f2f1" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
        opacity: 0.3;
        z-index: 0;
    }

.section-header {
    position: relative;
    z-index: 1;
    margin-bottom: 4rem;
}

.global-achievement-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-gold);
    color: #fff;
    padding: 0.6rem 1.8rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-medium);
    letter-spacing: 0.5px;
}

    .global-achievement-badge i {
        font-size: 1.2rem;
    }

.section-title {
    margin-bottom: 2rem;
}

.title-highlight {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.title-subtitle {
    display: block;
    font-size: 1.3rem;
    color: var(--dark-green);
    font-weight: 500;
    opacity: 0.8;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.decoration-line {
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.decoration-icon {
    margin: 0 1rem;
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.announcement-container {
    position: relative;
    z-index: 1;
}

.achievement-card {
    background: #fff;
    border-radius: var(--border-radius-large);
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(46, 125, 50, 0.1);
    position: relative;
    overflow: hidden;
}

    .achievement-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--gradient-primary);
    }

.achievement-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.achievement-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    flex-shrink: 0;
}

.achievement-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.achievement-text p {
    color: var(--dark-green);
    font-size: 1.1rem;
    opacity: 0.8;
    margin: 0;
}

.announcement-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 2rem;
}

.leadership-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(255, 167, 38, 0.1), rgba(255, 193, 7, 0.05));
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--gold-accent);
}

    .leadership-highlight i {
        color: var(--gold-accent);
        font-size: 1.5rem;
    }

    .leadership-highlight span {
        font-weight: 600;
        color: var(--dark-green);
        font-size: 1.1rem;
    }

.phases-section {
    background: #fff;
    border-radius: var(--border-radius-large);
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
}

.phases-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 2.5rem;
    text-align: center;
    justify-content: center;
}

    .phases-title i {
        color: var(--gold-accent);
        font-size: 2rem;
    }

.phases-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.phase-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    position: relative;
}

    .phase-item:not(:last-child)::after {
        content: '';
        position: absolute;
        left: 25px;
        top: 60px;
        bottom: -30px;
        width: 2px;
        background: linear-gradient(to bottom, var(--accent-green), rgba(76, 175, 80, 0.3));
    }

.phase-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-soft);
}

.phase-content {
    flex: 1;
    background: rgba(248, 249, 250, 0.8);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(46, 125, 50, 0.1);
}

    .phase-content h4 {
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--primary-green);
        margin-bottom: 0.5rem;
    }

.phase-period {
    color: var(--gold-accent);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.phase-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.phase-activities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.activity-tag {
    background: var(--gradient-primary);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.phase-highlight, .phase-impact {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(76, 175, 80, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--accent-green);
}

    .phase-highlight i, .phase-impact i {
        color: var(--accent-green);
        font-size: 1.2rem;
    }

    .phase-highlight span, .phase-impact span {
        font-weight: 600;
        color: var(--dark-green);
    }

/* Responsive Design */
@media (max-width: 992px) {
    .title-highlight {
        font-size: 2rem;
    }

    .title-subtitle {
        font-size: 1.1rem;
    }

    .achievement-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .phases-timeline {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .partnership-section {
        padding: 3rem 0;
    }

    .achievement-card, .phases-section {
        padding: 1.5rem;
    }

    .phase-item {
        flex-direction: column;
        gap: 1rem;
    }

        .phase-item::after {
            display: none;
        }

    .phase-activities {
        justify-content: center;
    }

    .title-highlight {
        font-size: 1.8rem;
    }

    .announcement-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .title-highlight {
        font-size: 1.5rem;
    }

    .title-subtitle {
        font-size: 1rem;
    }

    .phases-title {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
}
.about-section {
    background: linear-gradient(135deg, #f8fffe 0%, #e8f8f5 50%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.about-top-decoration, .about-bottom-decoration {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 0;
}

.about-top-decoration {
    top: 0;
}

.about-bottom-decoration {
    bottom: 0;
}

.mission-vision-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 30px rgba(46, 125, 50, 0.08);
    border: 1px solid rgba(46, 125, 50, 0.08);
    position: relative;
    overflow: hidden;
    min-height: 370px;
    transition: box-shadow 0.3s, transform 0.3s;
    animation: fadeInUp 1s;
}

    .mission-vision-card:hover {
        box-shadow: 0 16px 40px rgba(46, 125, 50, 0.16);
        transform: translateY(-8px) scale(1.03);
    }

.card-icon-gradient {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: #fff;
    box-shadow: 0 4px 20px rgba(46, 125, 50, 0.12);
    position: relative;
    z-index: 2;
    transition: background 0.3s, transform 0.3s;
    animation: float 4s ease-in-out infinite;
}

    .card-icon-gradient.dark {
        background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
    }

.card-decoration-float {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(139, 195, 74, 0.07);
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.value-card {
    background: #fff;
    border-radius: 18px;
    padding: 2rem 1.2rem 1.5rem 1.2rem;
    box-shadow: 0 4px 20px rgba(46, 125, 50, 0.08);
    border-top: 3px solid var(--accent-green);
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
    min-height: 230px;
    position: relative;
    overflow: hidden;
}

    .value-card:hover {
        box-shadow: 0 12px 32px rgba(46, 125, 50, 0.16);
        transform: translateY(-6px) scale(1.03);
    }

.value-icon-gradient {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.7rem;
    margin: 0 auto 1rem;
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.10);
    transition: background 0.3s, transform 0.3s;
    animation: float 5s ease-in-out infinite;
}

.value-card:hover .value-icon-gradient {
    background: linear-gradient(135deg, var(--accent-green), var(--primary-green));
    transform: scale(1.12) rotate(-6deg);
}

.value-title {
    font-family: 'Tajawal', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.value-description {
    color: #4a5c4a;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.goal-progress {
    height: 7px;
    background: #f0f0f0;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 1rem;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(to right, var(--primary-green), var(--accent-green));
    border-radius: 3px;
    transition: width 1s cubic-bezier(0.4,0,0.2,1);
}

.icon-bg {
    display: none;
}

.value-card.extended {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 3rem;
    text-align: right;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f8f5 100%);
}

    .value-card.extended .value-icon-gradient {
        margin-bottom: 0;
    }

@media (max-width: 768px) {
    .value-card {
        padding: 1.2rem 0.7rem 1rem 0.7rem;
        min-height: 150px;
    }

    .value-icon-gradient {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .value-title {
        font-size: 1rem;
    }

    .value-description {
        font-size: 0.95rem;
    }

    .value-card.extended {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.2rem;
    }

        .value-card.extended .value-icon-gradient {
            margin-bottom: 1rem;
        }
}

.section-header-global {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-title-global {
    font-size: 2.8rem;
    font-weight: var(--font-weight-extra-bold);
    color: var(--primary-green);
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle-global {
    font-size: 1.3rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    font-weight: var(--font-weight-normal);
}

.title-decoration-global {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.decoration-line-global {
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.decoration-icon-global {
    margin: 0 1rem;
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: var(--shadow-soft);
}

@media (max-width: 992px) {
    .section-title-global {
        font-size: 2.1rem;
    }

    .section-header-global {
        margin-bottom: 2.5rem;
    }

    .mission-vision-card {
        min-height: 320px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .section-title-global {
        font-size: 1.7rem;
    }

    .mission-vision-card {
        padding: 1.2rem;
        min-height: 260px;
    }

    .value-card {
        padding: 1.2rem;
        min-height: 180px;
    }
}

@media (max-width: 576px) {
    .section-title-global {
        font-size: 1.2rem;
    }

    .mission-vision-card, .value-card {
        min-height: unset;
    }
}

/* أنيميشن */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}