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

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

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

    .services-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;
    }

    .services-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);
    }

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

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

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

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

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

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

    .services-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;
    }

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

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

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

    .services-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) {
        .services-hero h1 {
            font-size: 42px;
        }

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

        .services-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 */
    .services-Us-hero {
        background: linear-gradient(135deg, #0c1544, #000104);
        color: white;
        text-align: center;
        padding: 174px 19px 148px;
    }

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

    .services-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) {
        .services-Us-hero h1 {
            font-size: 42px;
        }

        .services-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;
    }


    :root {
        --primary: #3b82f6;
        --primary-dark: #2563eb;
        --gradient: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    }

    .service-card {
        transition: all 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.1);
        border: solid 1px #33333336;
        border-radius: 20px;
        background: #ffffff;
        box-shadow: 0px 0px 0px 4px rgba(0, 0, 0, 0.09);
        height: 100%;
        overflow: hidden;
        /* margin: 48px 1px !important; */
    }





    .service-icon {
        font-size: 3.6rem;
        background: var(--gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 1.8rem;
        transition: all 0.6s ease;
    }

    /* .service-card:hover .service-icon {
        transform: rotate(15deg) scale(1.25);
    } */

    .btn-explore {
        background: var(--navbar-bg);
        border: none;
        border-radius: 50px;
        padding: 0.75rem 2rem;
        font-weight: 700;
        letter-spacing: 0.5px;
        transition: all 0.4s ease;
    }

    .btn-explore:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(59, 130, 246, 0.45);
    }

    .section-title h1 {
        background: var(--gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 900;
        font-size: 3.5rem;
    }

    .hero-section {
        background: var(--gradient);
        padding: 120px 0;
    }

    .floating-ai-btn {
        position: fixed;
        bottom: 30px;
        left: 30px;
        width: 70px;
        height: 70px;
        background: var(--gradient);
        border-radius: 50%;
        box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
        color: white;
        font-size: 27px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 9999;
        transition: all 0.4s ease;
        border: none;
        background: var(--accent-color);
        color: white;
        font-weight: 600;
        display: inline-block;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .floating-ai-btn:hover {
        transform: scale(1.15) rotate(10deg);
        box-shadow: 0 15px 40px rgba(59, 130, 246, 0.55);
    }

    .floating-ai-btn i {
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.15);
        }

        100% {
            transform: scale(1);
        }
    }



    .rtl {
        direction: rtl;
        text-align: right;
    }

    .ltr {
        direction: ltr;
        text-align: left;
    }


    .col-md-6.col-lg-4.aos-init.aos-animate {
        margin: 12px 0px !important;
    }

    .card-body.text-center.p-5 {
        padding: 15px 13px !important;
    }

    button.btn.btn-primary.open-ai-chat-btn {
        background: var(--navbar-bg);
        color: white;
        border-radius: 30px;
        padding: 8px 16px;
        font-size: 0.9rem;
        font-weight: 600;

        margin-top: 10px;
        text-decoration: none;

        width: 100%;
    }

    .value-item h5 {
        margin-top: 25px;
        color: var(--dark);
        margin-bottom: 20px;
        font-weight: 700;
        font-family: 'Alexandria';
        font-size: 16px;
        line-height: 34px;
    }