 :root {
            --color-primary: #0F2348;
            --color-primary-rgb: 15, 35, 72;
            --color-primary-dark: #0A1A36;
            --color-primary-light: #1A3A7A;
            --color-secondary: #FF6B35;
            --color-secondary-dark: #E05A2B;
            --color-secondary-light: #FF8C5A;
            --color-accent: #00A8E8;
            --color-success: #28A745;
            --color-light: #F8F9FA;
            --color-dark: #212529;
            --color-text: #4A4A4A;
            --color-text-muted: #6C757D;
            --color-white: #FFFFFF;
            --color-border: #E9ECEF;
            
            --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
            --gradient-secondary: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
            
            --font-primary: 'Tajawal', sans-serif;
            --font-headings: 'Tajawal', sans-serif;
            
            --container-max-width: 1320px;
            --border-radius: 12px;
            --border-radius-sm: 6px;
            --border-radius-lg: 16px;
            
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
            --shadow-xl: 0 12px 36px rgba(0, 0, 0, 0.15);
            
            --section-padding-y-desktop: 100px;
            --section-padding-y-mobile: 70px;
            
            --transition-main: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            --transition-fast: 0.15s ease-out;
            
            --header-height: 80px;
        }

        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
            scroll-padding-top: calc(var(--header-height) + 20px);
        }
        
        body {
            font-family: var(--font-primary);
            color: var(--color-text);
            background-color: var(--color-white);
            line-height: 1.7;
            font-size: 16px;
            direction: rtl;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-headings);
            font-weight: 800;
            color: var(--color-primary);
            line-height: 1.3;
            margin-top: 0;
            margin-bottom: 0.75em;
        }
        
        h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
        h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
        h3 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
        h4 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
        
        p {
            margin-top: 0;
            margin-bottom: 1.25rem;
            color: var(--color-text-muted);
            font-size: 1.05rem;
            font-weight: 400;
            line-height: 1.8;
        }
        
        a {
            color: var(--color-primary);
            text-decoration: none;
            transition: color var(--transition-fast);
        }
        
        a:hover {
            color: var(--color-primary-dark);
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        .text-center {
            text-align: center;
        }
        
        .text-right {
            text-align: right;
        }
        
        .text-white {
            color: var(--color-white);
        }
        
        .bg-primary {
            background-color: var(--color-primary);
        }
        
        .bg-light {
            background-color: var(--color-light);
        }
        
        .bg-gradient {
            background: var(--gradient-primary);
        }
        
        .container {
            width: 92%;
            max-width: var(--container-max-width);
            margin-right: auto;
            margin-left: auto;
            padding-right: 15px;
            padding-left: 15px;
        }
        
        .section-padding {
            padding-top: var(--section-padding-y-mobile);
            padding-bottom: var(--section-padding-y-mobile);
        }
        
        .section-header {
            margin-bottom: 60px;
            max-width: 750px;
            margin-right: auto;
            margin-left: auto;
        }
        
        .section-header p {
            font-size: 1.1rem;
        }
        
        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-headings);
            font-weight: 700;
            font-size: 1rem;
            padding: 0.8rem 1.8rem;
            border-radius: var(--border-radius);
            text-align: center;
            cursor: pointer;
            transition: all var(--transition-main);
            border: 2px solid transparent;
            text-decoration: none;
            line-height: 1.5;
            box-shadow: var(--shadow-sm);
            position: relative;
            overflow: hidden;
        }
        
        .btn i {
            margin-left: 8px;
            font-size: 0.9em;
        }
        
        .btn-primary {
            background: var(--gradient-primary);
            color: var(--color-white);
            border-color: var(--color-primary);
        }
        
        .btn-primary:hover {
            background: var(--color-primary-dark);
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
            color: var(--color-white);
        }
        
        .btn-secondary {
            background: #0A1A36;
            color: var(--color-white);
            border-color: #1A3A7A;
        }
        
        .btn-secondary:hover {
            background: var(--color-secondary-dark);
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
            color: var(--color-white);
        }
        
        .btn-outline-light {
            border-color: rgba(255, 255, 255, 0.3);
            color: var(--color-white);
            background-color: transparent;
        }
        
        .btn-outline-light:hover {
            background-color: rgba(255, 255, 255, 0.1);
            border-color: var(--color-white);
            color: var(--color-white);
        }
        
        .btn-lg {
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
        }
        
        .btn-block {
            display: block;
            width: 100%;
        }
        
        /* Header */
        .header {
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            height: var(--header-height);
            background-color: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            box-shadow: var(--shadow-sm);
            z-index: 1000;
            transition: all var(--transition-main);
        }
        
        .header.scrolled {
            box-shadow: var(--shadow-md);
            height: 70px;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
        }
        
        .logo {
            font-family: var(--font-headings);
            font-size: 1.6rem;
            font-weight: 900;
            color: var(--color-primary);
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 36px;
            margin-left: 10px;
        }
        
        .nav {
            display: flex;
            align-items: center;
        }
        
        .nav-link {
            margin-left: 25px;
            font-weight: 600;
            color: var(--color-primary);
            position: relative;
            padding: 5px 0;
            font-size: 0.95rem;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 0;
            height: 2px;
            background-color: var(--color-secondary);
            transition: width var(--transition-main);
        }
        
        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }
        
        .nav-link:hover {
            color: var(--color-primary-dark);
        }
        
        .header-actions {
            display: flex;
            align-items: center;
            margin-right: 30px;
        }
        
        .header-actions .btn {
            margin-left: 12px;
        }
        
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            width: 30px;
            height: 24px;
            position: relative;
            z-index: 1001;
        }
        
        .mobile-menu-toggle span {
            display: block;
            position: absolute;
            height: 3px;
            width: 100%;
            background: var(--color-primary);
            border-radius: 3px;
            opacity: 1;
            right: 0;
            transition: var(--transition-main);
        }
        
        .mobile-menu-toggle span:nth-child(1) {
            top: 0;
            transform-origin: right center;
        }
        
        .mobile-menu-toggle span:nth-child(2) {
            top: 10px;
            transform-origin: right center;
        }
        
        .mobile-menu-toggle span:nth-child(3) {
            top: 20px;
            transform-origin: right center;
        }
        
        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(-45deg);
            top: -2px;
        }
        
        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        
        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(45deg);
            top: 22px;
        }
        
        /* Hero Section */
        .hero-section {
            padding-top: calc(var(--header-height) + 40px);
            padding-bottom: 80px;
            position: relative;
            overflow: hidden;
            background: var(--gradient-primary);
            color: var(--color-white);
        }
        
        .hero-container {
            display: grid;
            grid-template-columns: 1fr;
            align-items: center;
            gap: 40px;
            position: relative;
            z-index: 2;
        }
        
        .hero-content {
            order: 2;
        }
        
        .hero-image {
            order: 1;
            position: relative;
        }
        
        .hero-image img {
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-xl);
            margin-right: auto;
            width: 100%;
            max-width: 600px;
        }
        
        .hero-badge {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.15);
            color: var(--color-white);
            font-weight: 600;
            font-size: 0.85rem;
            padding: 6px 16px;
            border-radius: 30px;
            margin-bottom: 20px;
            backdrop-filter: blur(4px);
        }
        
        .hero-title {
            color: var(--color-white);
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero-description {
            font-size: 1.15rem;
            opacity: 0.9;
            margin-bottom: 30px;
            max-width: 550px;
        }
        
        .hero-cta {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .hero-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 40px;
        }
        
        .stat-item {
            display: flex;
            align-items: center;
        }
        
        .stat-icon {
            width: 50px;
            height: 50px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 15px;
            font-size: 1.2rem;
            color: var(--color-white);
        }
        
        .stat-number {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--color-white);
            line-height: 1;
        }
        
        .stat-label {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-top: 5px;
        }
        
        .hero-shape {
            position: absolute;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.03);
            top: -300px;
            left: -300px;
            z-index: 1;
        }
        
        .hero-shape-2 {
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.03);
            bottom: -200px;
            right: -200px;
            z-index: 1;
        }
        
        /* Features Section */
        .features-section {
            position: relative;
            overflow: hidden;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }
        
        .feature-card {
            background-color: var(--color-white);
            border-radius: var(--border-radius-lg);
            padding: 30px;
            box-shadow: var(--shadow-md);
            transition: transform var(--transition-main), box-shadow var(--transition-main);
            border: 1px solid var(--color-border);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(15, 35, 72, 0.03) 0%, rgba(15, 35, 72, 0) 100%);
            z-index: -1;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            color: var(--color-white);
            border-radius: var(--border-radius);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }
        
        .feature-card h3 {
            margin-bottom: 15px;
            color: var(--color-primary);
        }
        
        .feature-card p {
            font-size: 1rem;
        }
        
        /* Solution Section */
        .solution-section {
            background-color: var(--color-light);
            position: relative;
        }
        
        .solution-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .solution-image {
            position: relative;
        }
        
        .solution-image img {
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-lg);
            width: 100%;
        }
        
        .solution-image::before {
            content: '';
            position: absolute;
            width: 80%;
            height: 80%;
            background-color: var(--color-secondary);
            opacity: 0.1;
            border-radius: var(--border-radius-lg);
            bottom: -20px;
            left: -20px;
            z-index: -1;
        }
        
        .solution-content {
            max-width: 600px;
        }
        
        .solution-list {
            margin-top: 30px;
        }
        
        .solution-item {
            display: flex;
            margin-bottom: 20px;
        }
        
        .solution-item-icon {
            flex-shrink: 0;
            width: 50px;
            height: 50px;
            background-color: var(--color-primary);
            color: var(--color-white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 15px;
            font-size: 1.2rem;
        }
        
        .solution-item-content h4 {
            margin-bottom: 5px;
            color: var(--color-primary);
        }
        
        /* Process Section */
        .process-section {
            position: relative;
        }
        
        .process-timeline {
            position: relative;
            padding-top: 40px;
        }
        
        .process-timeline::before {
            content: '';
            position: absolute;
            top: 0;
            right: 50%;
            transform: translateX(50%);
            width: 3px;
            height: 100%;
            background-color: var(--color-primary);
            opacity: 0.2;
        }
        
        .process-item {
            position: relative;
            margin-bottom: 40px;
            display: flex;
        }
        
        .process-item:last-child {
            margin-bottom: 0;
        }
        
        .process-number {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            color: var(--color-white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin-left: 20px;
            flex-shrink: 0;
            position: relative;
            z-index: 1;
            box-shadow: var(--shadow-md);
        }
        
        .process-number::before {
            content: '';
            position: absolute;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background-color: rgba(15, 35, 72, 0.1);
            z-index: -1;
        }
        
        .process-content {
            background-color: var(--color-white);
            border-radius: var(--border-radius);
            padding: 25px;
            box-shadow: var(--shadow-md);
            flex-grow: 1;
            border: 1px solid var(--color-border);
        }
        
        .process-content h4 {
            margin-bottom: 10px;
            color: var(--color-primary);
        }
        
        /* Testimonials Section */
        .testimonials-section {
            background-color: var(--color-light);
        }
        
        .testimonials-slider {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .testimonial-card {
            background-color: var(--color-white);
            border-radius: var(--border-radius-lg);
            padding: 40px;
            box-shadow: var(--shadow-md);
            margin: 20px;
            border: 1px solid var(--color-border);
            position: relative;
        }
        
        .testimonial-card::before {
            content: '\201C';
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 5rem;
            color: var(--color-primary);
            opacity: 0.1;
            font-family: serif;
            line-height: 1;
        }
        
        .testimonial-text {
            font-size: 1.1rem;
            font-style: italic;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-left: 20px;
        }
        
        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h5 {
            margin-bottom: 5px;
            color: var(--color-primary);
        }
        
        .author-info p {
            font-size: 0.9rem;
            color: var(--color-text-muted);
        }
        
        /* CTA Section */
        .cta-section {
            background: var(--gradient-primary);
            color: var(--color-white);
            position: relative;
            overflow: hidden;
        }
        
        .cta-container {
            position: relative;
            z-index: 2;
        }
        
        .cta-content {
            max-width: 700px;
            margin: 0 auto;
            text-align: center;
        }
        
        .cta-title {
            color: var(--color-white);
            margin-bottom: 20px;
        }
        
        .cta-description {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 30px;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .cta-shape {
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            top: -150px;
            left: -150px;
        }
        
        .cta-shape-2 {
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            bottom: -200px;
            right: -200px;
        }
        
        /* Footer */
        .footer {
            background-color: var(--color-primary-dark);
            color: var(--color-white);
            padding-top: 80px;
            padding-bottom: 30px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-brand {
            max-width: 350px;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--color-white);
            margin-bottom: 20px;
            display: inline-block;
        }
        
        .footer-description {
            font-size: 0.95rem;
            opacity: 0.8;
            margin-bottom: 25px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-white);
            font-size: 1rem;
            transition: all var(--transition-fast);
        }
        
        .social-link:hover {
            background-color: var(--color-secondary);
            transform: translateY(-3px);
        }
        
        .footer-links h4 {
            color: var(--color-white);
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-links h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 40px;
            height: 2px;
            background-color: var(--color-secondary);
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
            transition: all var(--transition-fast);
        }
        
        .footer-links a:hover {
            color: var(--color-white);
            padding-right: 5px;
        }
        
        .footer-contact .contact-info {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }
        
        .contact-icon {
            margin-left: 10px;
            color: var(--color-secondary);
            font-size: 1.1rem;
            margin-top: 3px;
        }
        
        .contact-text {
            font-size: 0.95rem;
            opacity: 0.8;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 25px;
            text-align: center;
        }
        
        .copyright {
            font-size: 0.85rem;
            opacity: 0.7;
        }
        
        .footer-links-bottom a {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.85rem;
            margin: 0 10px;
            transition: all var(--transition-fast);
        }
        
        .footer-links-bottom a:hover {
            color: var(--color-white);
        }
        
        /* Animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        
        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        .delay-1 {
            transition-delay: 0.1s;
        }
        
        .delay-2 {
            transition-delay: 0.2s;
        }
        
        .delay-3 {
            transition-delay: 0.3s;
        }
        
        .delay-4 {
            transition-delay: 0.4s;
        }
        
        /* Responsive Styles */
        @media (min-width: 768px) {
            .section-padding {
                padding-top: var(--section-padding-y-desktop);
                padding-bottom: var(--section-padding-y-desktop);
            }
            
            .hero-section {
                padding-top: calc(var(--header-height) + 60px);
                padding-bottom: 120px;
            }
            
            .hero-container {
                grid-template-columns: 1fr 1fr;
            }
            
            .hero-content {
                order: 1;
                text-align: right;
            }
            
            .hero-image {
                order: 2;
            }
            
            .hero-image img {
                margin-right: 0;
                margin-left: auto;
            }
            
            .hero-cta {
                justify-content: flex-start;
            }
            
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .solution-container {
                grid-template-columns: 1fr 1fr;
            }
            
            .solution-content {
                order: 1;
            }
            
            .solution-image {
                order: 2;
            }
            
            .process-timeline::before {
                right: 50%;
            }
            
            .process-item:nth-child(odd) {
                padding-right: calc(50% + 30px);
                padding-left: 0;
            }
            
            .process-item:nth-child(even) {
                padding-left: calc(50% + 30px);
                padding-right: 0;
            }
            
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (min-width: 992px) {
            .features-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .footer-grid {
                grid-template-columns: 1.5fr repeat(3, 1fr);
            }
            
            .process-item:nth-child(odd) .process-content {
                text-align: left;
            }
            
            .process-item:nth-child(even) .process-content {
                text-align: right;
            }
        }
        
        @media (max-width: 991px) {
            .mobile-menu-toggle {
                display: block;
            }
            
            .nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 300px;
                height: 100vh;
                background-color: var(--color-white);
                box-shadow: var(--shadow-lg);
                flex-direction: column;
                align-items: flex-start;
                padding: 80px 30px 30px;
                transition: right var(--transition-main);
                z-index: 1000;
            }
            
            .nav.active {
                right: 0;
            }
            
            .nav-link {
                margin: 0 0 20px;
                font-size: 1.1rem;
            }
            
            .header-actions {
                margin-right: auto;
                margin-left: 0;
                flex-direction: column;
                align-items: flex-start;
                width: 100%;
            }
            
            .header-actions .btn {
                margin: 0 0 15px;
                width: 100%;
            }
        }
        
        @media (max-width: 767px) {
            .hero-stats {
                flex-direction: column;
                gap: 20px;
            }
            
            .process-timeline::before {
                right: 30px;
            }
            
            .process-item {
                padding-right: 60px;
            }
            
            .process-number {
                position: absolute;
                right: 0;
                top: 0;
                transform: translateX(50%);
            }
        }
        
        /* Keyframes */
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-15px);
            }
        }
        
        .floating {
            animation: float 6s ease-in-out infinite;
        }
        
        .floating-2 {
            animation: float 5s ease-in-out infinite;
            animation-delay: 1s;
        }
        
        .floating-3 {
            animation: float 7s ease-in-out infinite;
            animation-delay: 2s;
        }