* {
            scrollbar-color: #6fbc32 rgba(111, 188, 50, 0.1);
            scrollbar-width: thin;
        }

        ::-webkit-scrollbar {
            width: 12px;
            height: 12px;
        }

        ::-webkit-scrollbar-track {
            background: linear-gradient(180deg, rgba(245, 250, 255, 0.05), rgba(200, 230, 255, 0.08));
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, #6fbc32, #7ec850);
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(111, 188, 50, 0.3);
            border: 2px solid rgba(111, 188, 50, 0.2);
            transition: all 0.3s ease;
        }

        body {
            font-family: 'Tajawal', sans-serif;
            color: var(--text-primary);
            line-height: 1.6;
            padding-top: 80px;
            background: var(--gradient-body);
        }

        /* --- Hero Section --- */
        .hero-section {
            position: relative;
            min-height: 500px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(31, 58, 90, 0.7), rgba(111, 188, 50, 0.3));
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            animation: slideInDown 0.8s ease-out;
        }

        .main-title {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 15px;
            color: #ffffff !important;
            text-shadow: 0 0 20px rgba(255, 255, 255, 0.6), 0 0 40px rgba(100, 150, 255, 0.4), 0 6px 18px rgba(0, 0, 0, 0.65);
        }

        .subtitle {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: #ffffff !important;
            text-shadow: 0 0 15px rgba(255, 255, 255, 0.5), 0 0 30px rgba(100, 150, 255, 0.3), 0 4px 12px rgba(0, 0, 0, 0.55);
            animation: slideInUp 0.8s ease-out 0.2s both;
        }

        /* --- Service Content Section --- */
        .service-content-section {
            padding: 60px 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-intro {
            text-align: center;
            margin-bottom: 50px;
            animation: fadeInDown 0.6s ease;
        }

        .service-intro h2 {
            color: #1a3a5a;
            font-size: 2.2rem;
            margin-bottom: 20px;
            font-weight: 800;
        }

        .service-intro p {
            color: #525252;
            font-size: 1rem;
            line-height: 1.8;
            max-width: 900px;
            margin: 0 auto;
        }

        .service-content-section h3 {
            color: #1a3a5a;
            font-size: 1.6rem;
            margin: 30px 0 30px 0;
            font-weight: 700;
            text-align: center;
        }

        /* --- Features Grid --- */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-bottom: 50px;
        }

        .feature-card {
            background: #ffffff;
            padding: 35px 25px;
            border-radius: 20px;
            border: 3px solid #6fbc32;
            text-align: center;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            animation: fadeInUp 0.6s ease;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(111, 188, 50, 0.25);
            border-color: #7ec850;
        }

        .feature-card i {
            font-size: 3.5rem;
            color: #6fbc32;
            margin-bottom: 20px;
            display: block;
            transition: all 0.3s ease;
        }

        .feature-card:hover i {
            transform: scale(1.15);
            color: #7ec850;
        }

        .feature-card h4 {
            color: #1a3a5a;
            font-size: 1.25rem;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .feature-card p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* --- Process Section --- */
        .process-section {
            padding: 60px 40px;
            max-width: 1200px;
            margin: 0 auto;
            background: linear-gradient(135deg, rgba(111, 188, 50, 0.05), rgba(126, 200, 80, 0.03));
            border-radius: 16px;
            margin-bottom: 40px;
        }

        .process-section h2 {
            text-align: center;
            color: #1a3a5a;
            font-size: 2rem;
            margin-bottom: 50px;
            font-weight: 800;
            animation: fadeInDown 0.6s ease;
        }

        .process-steps {
            display: flex;
            justify-content: space-between;
            gap: 30px;
            position: relative;
            flex-wrap: wrap;
            align-items: flex-start;
        }

        .process-step {
            flex: 1;
            min-width: 200px;
            text-align: center;
            position: relative;
            z-index: 1;
            animation: fadeInUp 0.6s ease;
        }

        .step-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #6fbc32, #7ec850);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: bold;
            margin: 0 auto 15px;
            box-shadow: 0 6px 20px rgba(111, 188, 50, 0.3);
            transition: all 0.3s ease;
        }

        .process-step:hover .step-icon {
            transform: scale(1.1);
            box-shadow: 0 10px 30px rgba(111, 188, 50, 0.5);
        }

        .process-step h4 {
            color: #1a3a5a;
            font-size: 1.1rem;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .process-step p {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .process-steps::before {
            content: '';
            position: absolute;
            top: 30px;
            left: 10%;
            right: 10%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #6fbc32, transparent);
            z-index: 0;
        }

        /* --- Final CTA --- */
        .cta-section {
            padding: 60px 40px;
            text-align: center;
            background: linear-gradient(135deg, rgba(111, 188, 50, 0.08), rgba(126, 200, 80, 0.05));
            max-width: 1200px;
            margin: 40px auto;
            border-radius: 16px;
        }

        .cta-section h3 {
            color: #1a3a5a;
            margin-bottom: 25px;
            font-size: 2rem;
            font-weight: 800;
            animation: fadeInDown 0.6s ease;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #6fbc32, #7ec850);
            color: white;
            padding: 15px 40px;
            border-radius: 8px;
            font-weight: 700;
            text-decoration: none;
            margin-top: 20px;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(111, 188, 50, 0.5);
        }

        .ar-text {
            font-size: 0.8rem;
            opacity: 0.9;
        }

        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* --- Responsive Design --- */
        @media (max-width: 1024px) {
            body {
                padding-top: 75px;
            }

            .hero-section {
                min-height: 400px;
            }

            .main-title {
                font-size: 2.8rem;
            }

            .subtitle {
                font-size: 1.1rem;
            }

            .service-content-section {
                padding: 50px 30px;
            }

            .process-section {
                padding: 50px 30px;
            }

            .features-grid {
                gap: 20px;
            }

            .service-content-section h3 {
                font-size: 1.5rem;
            }

            .cta-section {
                padding: 50px 30px;
                margin: 35px 30px;
            }

            .cta-section h3 {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 768px) {
            body {
                padding-top: 70px;
            }

            .hero-section {
                min-height: 350px;
            }

            .main-title {
                font-size: 2rem;
            }

            .subtitle {
                font-size: 1rem;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .process-steps {
                flex-direction: column;
                gap: 40px;
            }

            .process-steps::before {
                display: none;
            }

            .service-content-section {
                padding: 60px 20px;
            }

            .process-section {
                padding: 60px 20px;
            }

            .service-intro h2 {
                font-size: 1.8rem;
            }

            .cta-section {
                padding: 40px 20px;
                margin: 30px 20px;
                border-radius: 12px;
            }

            .cta-section h3 {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            body {
                padding-top: 65px;
            }

            .hero-section {
                min-height: 280px;
            }

            .main-title {
                font-size: 1.5rem;
            }

            .subtitle {
                font-size: 0.9rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .feature-card {
                padding: 20px;
            }

            .feature-card i {
                font-size: 2rem;
            }

            .service-intro h2 {
                font-size: 1.4rem;
            }

            .cta-section {
                padding: 30px 18px;
                margin: 25px 15px;
                border-radius: 10px;
            }

            .cta-section h3 {
                font-size: 1.2rem;
            }

            .cta-button {
                padding: 12px 30px;
                font-size: 0.9rem;
            }
        }

        /* ===== Dark Mode Overrides ===== */
        html[data-theme="dark"] .service-intro h2,
        html[data-theme="dark"] .service-content-section h3,
        html[data-theme="dark"] .feature-card h4,
        html[data-theme="dark"] .process-section h2,
        html[data-theme="dark"] .process-step h4,
        html[data-theme="dark"] .cta-section h3 {
            color: var(--text-primary);
        }
        html[data-theme="dark"] .service-intro p,
        html[data-theme="dark"] .feature-card p,
        html[data-theme="dark"] .process-step p {
            color: var(--text-secondary);
        }
        html[data-theme="dark"] .feature-card {
            background: var(--bg-card);
            border-color: var(--accent-gold);
        }
        html[data-theme="dark"] .feature-card:hover {
            border-color: #e6c25a;
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.18);
        }
        html[data-theme="dark"] .feature-card i {
            color: var(--accent-gold);
        }
        html[data-theme="dark"] .feature-card:hover i {
            color: #e6c25a;
        }
        html[data-theme="dark"] .process-section {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.06), rgba(212, 175, 55, 0.03));
        }
        html[data-theme="dark"] .step-icon {
            background: linear-gradient(135deg, var(--accent-gold), #e6c25a);
            color: #1a1f2e;
            box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
        }
        html[data-theme="dark"] .process-step:hover .step-icon {
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
        }
        html[data-theme="dark"] .process-steps::before {
            background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
        }
        html[data-theme="dark"] .cta-section {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.04));
        }
        html[data-theme="dark"] .cta-button {
            background: linear-gradient(135deg, var(--accent-gold), #e6c25a);
            color: #1a1f2e;
        }
        html[data-theme="dark"] .cta-button:hover {
            box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5);
        }