    :root {
        --primary: #ff6b00;
        --primary-dark: #e55a00;
        --dark: #0c1544;
        --light: #f8f9fc;
    }

    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    /* Hero */
    .about-hero {
        background: linear-gradient(135deg, #0c1544, #000104);
        color: white;
        text-align: center;
        padding: 174px 19px 148px;
        position: relative;
        overflow: hidden;
    }

    .about-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, rgba(255, 107, 0, 0.1), transparent);
        pointer-events: none;
    }

    .about-hero h1 {
        font-size: 56px;
        margin-bottom: 30px;
        font-weight: 900;
        letter-spacing: -1px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .about-hero p {
        font-size: 24px;
        max-width: 900px;
        margin: 0 auto;
        opacity: 0.9;
        line-height: 1.6;
    }

    /* About Sections */
    .about-section {
        padding: 100px 20px;
        max-width: 1400px;
        margin: 0 auto;
    }

    .about-intro {
        text-align: center;
        margin-bottom: 80px;
    }

    .about-intro h2 {
        font-size: 42px;
        font-weight: 900;
        color: var(--dark);
        margin-bottom: 30px;
    }

    .about-intro p {
        font-size: 20px;
        color: #666;
        line-height: 1.8;
        max-width: 1000px;
        margin: 0 auto;
    }

    /* Cards Grid */
    .about-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
    }

    .about-card {
        background: white;
        border-radius: 30px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        transition: all 0.4s ease;
        text-align: center;
        padding: 40px;
    }

    .about-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 25px 60px rgba(255, 107, 0, 0.2);
    }

    .about-card i {
        font-size: 60px;
        color: var(--primary);
        margin-bottom: 25px;
    }

    .about-card h3 {
        font-size: 28px;
        color: var(--dark);
        margin-bottom: 20px;
        font-weight: 700;
    }

    .about-card p {
        font-size: 18px;
        color: #666;
        line-height: 1.7;
    }

    /* Team Section */
    .team-section {
        background: #f8f9fc;
        padding: 100px 20px;
        text-align: center;
    }

    .team-section h2 {
        font-size: 42px;
        font-weight: 900;
        color: var(--dark);
        margin-bottom: 60px;
    }

    .team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .team-member {
        background: white;
        border-radius: 30px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transition: all 0.4s;
    }

    .team-member:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(255, 107, 0, 0.15);
    }

    .team-img {
        height: 300px;
        overflow: hidden;
    }

    .team-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .team-info {
        padding: 30px;
    }

    .team-info h4 {
        font-size: 24px;
        color: var(--dark);
        margin-bottom: 10px;
        font-weight: 700;
    }

    .team-info p {
        font-size: 18px;
        color: #666;
        margin-bottom: 20px;
    }

    .team-social {
        display: flex;
        justify-content: center;
        gap: 15px;
    }

    .team-social a {
        color: var(--primary);
        font-size: 24px;
        transition: all 0.3s;
    }

    .team-social a:hover {
        color: var(--primary-dark);
        transform: translateY(-3px);
    }

    /* Values Section */
    .values-section {
        padding: 5px 20px;
        text-align: center;
    }

    .values-section h2 {
        font-size: 42px;
        font-weight: 900;
        color: var(--dark);
        margin-bottom: 60px;
    }

    .values-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .value-item {
        background: #f8f9fc;
        border-radius: 30px;
        padding: 40px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: all 0.4s;
    }

    .value-item:hover {
        background: white;
        box-shadow: 0 20px 50px rgba(255, 107, 0, 0.15);
        transform: translateY(-10px);
    }

    .value-item i {
        font-size: 3rem;
        background: linear-gradient(135deg, rgb(255 107 0), rgb(74 144 226));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 1.2rem;
    }

    .value-item h4 {
        font-size: 26px;
        color: var(--dark);
        margin-bottom: 20px;
        font-weight: 700;
    }

    .value-item p {
        font-size: 18px;
        color: #666;
        line-height: 1.7;
    }

    /* Footer */
    footer {
        background: var(--dark);
        color: white;
        padding: 80px 20px 40px;
        text-align: center;
    }

    .footer-links {
        margin-bottom: 40px;
    }

    .footer-links a {
        color: white;
        text-decoration: none;
        margin: 0 20px;
        font-size: 18px;
        transition: color 0.3s;
    }

    .footer-links a:hover {
        color: var(--primary);
    }

    .copyright {
        font-size: 16px;
        color: #aaa;
    }

    @media (max-width: 992px) {
        .about-hero h1 {
            font-size: 42px;
        }

        .about-hero p {
            font-size: 20px;
        }

        .about-cards,
        .team-grid,
        .values-grid {
            grid-template-columns: 1fr;
        }

        .team-img {
            height: 250px;
        }
    }


    :root {
        --primary: #ff6b00;
        --primary-dark: #e55a00;
        --dark: #0c1544;
        --light: #f8f9fc;
    }

    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    /* Hero */
    .About-Us-hero {
        background: linear-gradient(135deg, #0c1544, #000104);
        color: white;
        text-align: center;
        padding: 174px 19px 148px;
    }

    .About-Us-hero h1 {
        font-size: 56px;
        margin-bottom: 30px;
        font-weight: 900;
    }

    .About-Us-hero p {
        font-size: 24px;
        max-width: 900px;
        margin: 0 auto;
    }

    /* Software Grid */
    .downloads-section {
        padding: 100px 20px;
        max-width: 1400px;
        margin: 0 auto;
    }

    .downloads-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 50px;
    }

    .software-card {
        background: white;
        border-radius: 30px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        transition: all 0.4s ease;
        text-align: center;
    }

    .software-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 25px 60px rgba(255, 107, 0, 0.2);
    }

    .software-box {
        position: relative;
        height: 300px;
        background: #000;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 40px;
    }

    .software-box img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .card-body {
        padding: 40px;
    }

    .software-title {
        font-size: 28px;
        color: var(--dark);
        margin-bottom: 20px;
        font-weight: 700;
        font-family: 'ReemKufi';
    }

    .software-desc {
        font-size: 18px;
        color: #666;
        margin-bottom: 30px;
        line-height: 1.8;
    }

    .download-btn {
        display: inline-block;
        background: #a82740;
        color: white;
        padding: 16px 40px;
        border-radius: 40px;
        text-decoration: none;
        font-size: 20px;
        font-weight: bold;
        transition: all 0.3s;
    }

    .download-btn:hover {
        background: #a82740;
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
    }

    a {
        color: #fff;
    }

    a:hover {
        color: #fff;
        text-decoration: none;
    }

    /* Footer داخلي */
    footer {
        background: var(--dark);
        color: white;
        padding: 80px 20px 40px;
        text-align: center;
    }

    .footer-links {
        margin-bottom: 40px;
    }

    .footer-links a {
        color: white;
        text-decoration: none;
        margin: 0 20px;
        font-size: 18px;
    }

    .footer-links a:hover {
        color: var(--primary);
    }

    .copyright {
        font-size: 16px;
        color: #aaa;
    }

    @media (max-width: 992px) {
        .About-Us-hero h1 {
            font-size: 42px;
        }

        .About-Us-hero p {
            font-size: 20px;
        }

        .downloads-grid {
            grid-template-columns: 1fr;
        }
    }

    .hero-waves {
        display: block;
        margin-top: 0;
        width: 100%;
        height: 99px;
        z-index: 5;
        position: relative;
        top: -99px;
    }

    .download-stats {
        margin: 15px 0;
        color: #0c1544;
        font-size: 16px;
    }

    .download-count {
        font-size: 14px;
        color: #666;
        margin-right: 10px;
    }

    a.download-btn.cloud {
        background: #2f55d4;
        margin-top: 18px;
    }

    p.NULL_cloud {
        margin-top: 31px;
        color: darkgrey;
        cursor: not-allowed;
        font-family: 'Alexandria';
        text-decoration: underline;
    }