	             :root {
	                 --primary-purple: #502C84;
	                 --light-purple: #F4E5FF;
	                 --secondary-orange: #FF781F;
	                 --secondary-cyan: #00D1D1;
	                 --dark-gray: #1a1a1a;
	                 --medium-gray: #666;
	                 --light-gray: #f8f9fa;
	                 --container-pad: max(6%, calc((100% - 1440px) / 2));
	             }

	             * {
	                 margin: 0;
	                 padding: 0;
	                 box-sizing: border-box;
	             }
             html {
                 scrollbar-width: none;
                 scroll-behavior: smooth;
             }

             ::-webkit-scrollbar {
                 width: 0;
                 height: 0;
                 background: transparent;
             }

	             body {
	                 font-family: 'IBM Plex Sans Arabic', sans-serif;
	                 background: #ffffff;
	                 color: var(--dark-gray);
	                 line-height: 1.7;
	                 overflow-x: hidden;
	             }

header {
    background: transparent;
    padding: 1rem var(--container-pad);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    box-shadow: none;
    
    position: fixed !important; 
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease; 
}

header.scrolled {
    background: rgba(255, 255, 255, 0.62);
    backdrop-filter: blur(22px) saturate(1.5);
    -webkit-backdrop-filter: blur(22px) saturate(1.5);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 1rem var(--container-pad); 
}

header.scrolled .nav-links a {
    color: var(--dark-gray);
}

header.scrolled .nav-links a::after {
    background: var(--primary-purple);
}

header.scrolled .jzl-logo-white {
    opacity: 0;
    visibility: hidden;
}

header.scrolled .jzl-logo-colored {
    display: block !important;
    opacity: 1;
    visibility: visible;
}

body {
    padding-top: 0; 
}

	             .logo {
	                 font-size: 2.8rem;
	                 font-weight: 800;
	                 color: var(--primary-purple);
	                 font-style: italic;
	                 letter-spacing: 4px;
	                 text-transform: uppercase;
	             }

	             .nav-links {
	                 display: flex;
	                 gap: 1.5rem;
	                 align-items: center;
	                 justify-self: center;
	                 transform: translateX(-45px);
	             }

	             .nav-links a {
	                 color: white;
	                 text-decoration: none;
	                 font-size: 1.05rem;
	                 font-weight: 600;
	                 transition: color 0.3s;
	                 position: relative;
	             }

	             .nav-links a::after {
	                 content: '';
	                 position: absolute;
	                 bottom: -5px;
	                 right: 0;
	                 width: 0;
	                 height: 2px;
	                 background: white;
	                 transition: width 0.3s;
	             }

	             .nav-links a:hover {
	                 color: var(--secondary-orange);
	             }

	             .nav-links a:hover::after {
	                 width: 100%;
	             }


	   ::selection {
	      background-color: var(--primary-purple);
	      color: white; 
	   }

	   ::-moz-selection {
	      background-color: var(--primary-purple);
	      color: white;
	   }
	      
	             .btn {
	                 padding: 1.1rem 2.5rem;
	                 font-size: 1.1rem;
	                 font-weight: 700;
	                 border: none;
	                 border-radius: 50px;
	                 cursor: pointer;
	                 transition: all 0.3s;
	                 white-space: nowrap;
	                 text-decoration: none !important;
	                 margin-right: 15px;
	                 text-decoration: none;
	                 display: inline-block;
	                 font-family: 'IBM Plex Sans Arabic', sans-serif;
	             }

	             .btn-primary {
	                 background: var(--secondary-orange);
	                 color: white;
	                 box-shadow: 0 8px 20px rgba(255,120,31,0.3);
	             }

	             .btn-primary:hover {
	                 background: #e66a1a;
	                 transform: translateY(-3px);
	                 box-shadow: 0 12px 30px rgba(255,120,31,0.4);
	             }

	             .btn-secondary {
	                 background: white;
	                 color: var(--primary-purple);
	                 box-shadow: 0 8px 20px rgba(255,255,255,0.2);
	             }

	             .btn-secondary:hover {
	                 background: var(--light-purple);
	                 transform: translateY(-3px);
	             }

	      .stats {
	         padding: 3rem var(--container-pad);
	         background: var(--light-gray);

	      }

	      .stats-grid {
	         display: flex; 
	         flex-wrap: nowrap; 
	         gap: 1.2rem; 
	         direction: rtl;
	         overflow-x: auto; 
	         padding-bottom: 10px; 
	         padding-top: 6px; 

	      }

	      .stats-grid::-webkit-scrollbar {
	         height: 5px;
	         display: block;
	      }

	      .stats-grid::-webkit-scrollbar-track {
	         background: rgba(0, 0, 0, 0.05);
	         border-radius: 10px;
	      }

	      .stats-grid::-webkit-scrollbar-thumb {
	         background: var(--primary-purple);
	         border-radius: 10px;
	      }

	      .stat-item {
	         flex: 0 0 calc(20% - 1rem); 
	         min-width: 140px;
	         text-align: center;
	         padding: 1.2rem;
	         background: white;
	         border-radius: 12px;
	         transition: transform 0.3s;
	         flex-shrink: 0;

	      }

	      .stat-item:hover {
	         transform: translateY(-5px);
	      }

	      .stat-number {
	         font-size: 1.8rem;
	         font-weight: 800;
	         color: var(--primary-purple);
	         font-variant-numeric: tabular-nums;
	         margin-bottom: 0.3rem;
	      }
	      
	      .stat-label {
	         font-size: 0.85rem;
	         font-weight: 600;
	         color: var(--medium-gray);
	      }
	      
	      @media (min-width: 1200px) {

	         .stats-grid {
	             overflow-x: hidden;
	             justify-content: space-between;

	         }

	         .stats-grid::-webkit-scrollbar {

	             display: none;
	         }

	      }
	             .features {
	                 padding: 5rem var(--container-pad);
	                 background: white;
	                 overflow-x: hidden;
	             }

	             .section-header {
	                 text-align: center;
	                 margin-bottom: 3rem;
	             }

	             .section-title {
	                 font-size: 2.2rem;
	                 font-weight: 800;
	                 color: var(--dark-gray);
	                 margin-bottom: 0.75rem;
	             }

	             .section-subtitle {
	                 font-size: 1.05rem;
	                 color: var(--medium-gray);
	                 font-weight: 400;
	             }

	             .features-grid {
	                 display: grid;
	                 grid-template-columns: repeat(3, 1fr);
	                 gap: 1.5rem;
	                 width: 100%;
	             }

	             .feature-card {
	                 background: white;
	                 padding: 1.8rem;
	                 border-radius: 16px;
	                 border: 1px solid #e8e8e8;
	                 transition: all 0.3s;
	                 text-align: center;
	             }

	             .feature-card:hover {
	                 transform: translateY(-8px);
	                 box-shadow: 0 15px 40px rgba(80,44,180,0.15);
	                 border-color: var(--primary-purple);
	             }

	             .feature-icon {
	                 width: 52px;
	                 height: 52px;
	                 background: var(--light-purple);
	                 border-radius: 12px;
	                 display: flex;
	                 align-items: center;
	                 justify-content: center;
	                 margin: 0 auto 1.1rem auto;
	                 transition: all 0.3s;
	             }

	             .feature-card:hover .feature-icon {
	                 background: var(--primary-purple);
	             }

	             .feature-icon i {
	                 font-size: 1.4rem;
	                 color: var(--primary-purple);
	                 transition: color 0.3s;
	             }

	             .feature-card:hover .feature-icon i {
	                 color: white;
	             }

	             .feature-card h3 {
	                 font-size: 1.15rem;
	                 font-weight: 700;
	                 color: var(--dark-gray);
	                 margin-bottom: 0.6rem;
	             }

	             .feature-card p {
	                 color: var(--medium-gray);
	                 line-height: 1.6;
	                 font-size: 0.92rem;
	             }


             .partners-section {
                 padding: 80px 0;
                 background: var(--dark-gray);
                 color: white;
             }

             .partners-section .section-title {
                 color: white;
                 text-align: center;
                 margin-bottom: 10px;
             }

             .partners-section .section-subtitle {
                 color: rgba(255,255,255,0.7);
                 text-align: center;
                 margin-bottom: 50px;
             }

             .swiper-main-container {
                 position: relative;
                 max-width: 1300px;
                 margin: 0 auto;
                 padding: 0 70px;
             }

             .figure__ {
                 background: rgba(255, 255, 255, 0.02);
                 border: 1px solid rgba(255, 255, 255, 0.1);
                 border-radius: 20px;
                 padding: 30px;
                 height: 180px;
                 display: flex;
                 justify-content: center;
                 align-items: center;
                 transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                 cursor: pointer;
             }

             .img-om {
                 max-width: 100%;
                 max-height: 90px;
                 object-fit: contain;
                 filter: brightness(0) invert(1);
                 opacity: 0.9;
                 transition: all 0.4s ease;
             }

             .swiper-slide:hover .figure__ {
                 border-color: var(--secondary-cyan);
                 background-color: #ffffff;
                 box-shadow: 0 10px 30px rgba(0, 209, 209, 0.2);
             }

             .swiper-slide:hover .img-om {
                 filter: none;
                 opacity: 1;
                 transform: scale(1.08);
             }

             .partners-section .swiper-button-next,
             .partners-section .swiper-button-prev {
                 color: #ffffff !important;
                 transition: 0.3s;
                 top: 75px !important;
                 margin-top: 0 !important;
                 width: 25px !important;
             }

             .partners-section .swiper-button-next:after,
             .partners-section .swiper-button-prev:after {
                 font-size: 25px !important;
                 font-weight: bold;
             }

             .partners-section .swiper-button-next { right: 20px !important; }
             .partners-section .swiper-button-prev { left: 20px !important; }

             .partners-section .swiper-button-next:hover,
             .partners-section .swiper-button-prev:hover {
                 color: var(--secondary-orange) !important;
             }

             .partners-section .swiper-pagination {
                 position: relative !important;
                 margin-top: 40px !important;
                 bottom: 0 !important;
             }

             .partners-section .swiper-pagination-bullet {
                 background: #ffffff !important;
                 opacity: 0.2;
             }

             .partners-section .swiper-pagination-bullet-active {
                 background: var(--secondary-orange) !important;
                 opacity: 1 !important;
                 width: 30px;
                 border-radius: 5px;
             }

	             .how-it-works {
	                 padding: 6rem var(--container-pad);
	                 background: white;
	             }

	             .steps-container {
	                 display: grid;
	                 grid-template-columns: repeat(4, 1fr);
	                 gap: 2.5rem;
	                 margin-top: 3rem;
	             }

	             @media (max-width: 900px) {
	                 .steps-container {
	                     grid-template-columns: repeat(2, 1fr);
	                 }
	             }

	             @media (max-width: 560px) {
	                 .steps-container {
	                     grid-template-columns: 1fr;
	                 }
	             }

	             .step-card {
	                 text-align: center;
	                 position: relative;
	             }

	             .step-number {
	                 width: 80px;
	                 height: 80px;
	                 background: var(--primary-purple);
	                 color: white;
	                 border-radius: 50%;
	                 display: flex;
	                 align-items: center;
	                 justify-content: center;
	                 font-size: 2rem;
	                 font-weight: 800;
	                 margin: 0 auto 2rem;
	                 position: relative;
	                 z-index: 2;
	                 overflow: hidden;
	                 transition: transform 0.35s ease;
	             }

	             .step-number::before {
	                 content: '';
	                 position: absolute;
	                 top: -60%;
	                 left: -70%;
	                 width: 45%;
	                 height: 220%;
	                 background: rgba(255,255,255,0.55);
	                 transform: rotate(25deg) translateX(-180%);
	                 transition: transform 0.6s ease;
	                 pointer-events: none;
	             }

	             .step-card:hover .step-number {
	                 transform: scale(1.12);
	             }

	             .step-card:hover .step-number::before {
	                 transform: rotate(25deg) translateX(380%);
	             }

	             .step-card:not(:last-child)::after {
	                 content: '';
	                 position: absolute;
	                 top: 40px;
	                 right: 50%;
	                 width: 0;
	                 height: 3px;
	                 background: var(--light-purple);
	                 z-index: 1;
	                 transition: width 0.7s ease-out;
	                 transition-delay: inherit;
	             }

	             .step-card.animated:not(:last-child)::after {
	                 width: calc(100% + 2.5rem);
	             }

	             @media (max-width: 900px) {
	                 .step-card:not(:last-child)::after {
	                     display: none;
	                 }
	             }

	             .step-card h3 {
	                 font-size: 1.5rem;
	                 font-weight: 700;
	                 color: var(--dark-gray);
	                 margin-bottom: 1rem;
	             }

	             .step-card p {
	                 color: var(--medium-gray);
	                 font-size: 1.05rem;
	             }

	             .cta-section {
	                 padding: 6rem var(--container-pad);
	                 background: linear-gradient(135deg, var(--primary-purple) 0%, #3d2166 100%);
	                 text-align: center;
	                 color: white;
	             }

	             .cta-section h2 {
	                 font-size: 3rem;
	                 font-weight: 800;
	                 margin-bottom: 1.5rem;
	             }

	             .cta-section p {
	                 font-size: 1.3rem;
	                 margin-bottom: 3rem;
	                 color: rgba(255,255,255,0.9);
	             }

	             .app-buttons {
	                 display: flex;
	                 gap: 2rem;
	                 justify-content: center;
	                 flex-wrap: wrap;
	             }

	             .app-button {
	                 background: rgba(255,255,255,0.15);
	                 backdrop-filter: blur(10px);
	                 border: 2px solid rgba(255,255,255,0.3);
	                 color: white;
	                 padding: 1.2rem 2.5rem;
	                 border-radius: 15px;
	                 display: flex;
	                 align-items: center;
	                 gap: 1rem;
	                 text-decoration: none;
	                 transition: all 0.3s;
	                 white-space: nowrap;
	                 text-decoration: none !important;
	                 margin-right: 15px;
	                 font-weight: 600;
	             }

	             .app-button:hover {
	                 background: white;
	                 color: var(--primary-purple);
	                 border-color: white;
	             }

	             .app-button i {
	                 font-size: 2.5rem;
	             }

	             .app-text {
	                 text-align: right;
	             }

	             .app-text-small {
	                 font-size: 0.85rem;
	                 opacity: 0.8;
	             }

	             .app-text-large {
	                 font-size: 1.3rem;
	                 font-weight: 700;
	             }

	             footer {
	                 background: #0a0a0a;
	                 color: white;
	                 padding: 4rem var(--container-pad) 2rem;
	             }

	             .footer-grid {
	                 display: grid;
	                 grid-template-columns: 2fr 1fr 1fr 1fr;
	                 gap: 4rem;
	                 margin-bottom: 3rem;
	             }

	             .footer-about h3 {
	                 font-size: 2.5rem;
	                 font-weight: 800;
	                 color: var(--secondary-orange);
	                 margin-bottom: 1.5rem;
	                 font-style: italic;
	                 letter-spacing: 3px;
	             }

	             .footer-about p {
	                 color: rgba(255,255,255,0.7);
	                 line-height: 1.8;
	                 margin-bottom: 2rem;
	             }

	             .social-links {
	                 display: flex;
	                 gap: 1rem;
	             }

	             .social-link {
	                 width: 45px;
	                 height: 45px;
	                 background: rgba(255,255,255,0.1);
	                 border-radius: 50%;
	                 display: flex;
	                 align-items: center;
	                 justify-content: center;
	                 color: white;
	                 text-decoration: none;
	                 transition: all 0.3s;
	                 white-space: nowrap;
	                 text-decoration: none !important;
	                 margin-right: 15px;
	                 border: 1px solid rgba(255,255,255,0.2);
	             }

	             .social-link:hover {
	                 background: var(--secondary-orange);
	                 border-color: var(--secondary-orange);
	                 transform: translateY(-3px);
	             }

	             .footer-section h4 {
	                 font-size: 1.3rem;
	                 font-weight: 700;
	                 margin-bottom: 1.5rem;
	                 color: white;
	             }

	             .footer-section a {
	                 display: block;
	                 color: rgba(255,255,255,0.7);
	                 text-decoration: none;
	                 margin-bottom: 0.8rem;
	                 transition: color 0.3s;
	                 font-size: 1.05rem;
	             }

	             .footer-section a:hover {
	                 color: var(--secondary-orange);
	             }

	             .footer-bottom {
	                 border-top: 1px solid rgba(255,255,255,0.1);
	                 padding-top: 2rem;
	                 text-align: center;
	                 color: rgba(255,255,255,0.5);
	             }

	             @media (max-width: 1200px) {
	                 .hero {
	                     grid-template-columns: 1fr;
	                     text-align: center;
	                 }

	                 .hero-cta {
	                     justify-content: center;
	                 }

	                 .features-grid {
	                     grid-template-columns: repeat(2, 1fr);
	                 }

	                 .footer-grid {
	                     grid-template-columns: repeat(2, 1fr);
	                 }
	             }
	             
	             @media (max-width: 992px) {
	                 .features {
	                     padding: 4rem 5%;
	                 }
	                 
	                 .features-grid {
	                     grid-template-columns: 1fr;
	                     gap: 1.5rem;
	                 }
	                 
	                 .feature-card {
	                     padding: 1.8rem;
	                     text-align: center;
	                     width: 100%;
	                     box-sizing: border-box;
	                 }
	                 
	                 .steps-container {
	                     grid-template-columns: 1fr;
	                 }
	                 
	                 .stats-grid {
	                     grid-template-columns: repeat(2, 1fr);
	                 }
	             }

	             @media (max-width: 768px) {
	                 header {
	                     padding: 1rem 5%;
	                 }

	                 .nav-links {
	                     display: none;
	                 }

	                 .hero {
	                     padding: 4rem 5%;
	                 }

	                 .hero h1 {
	                     font-size: 2rem;
	                 }
	                 
	                 .hero p {
	                     font-size: 1rem;
	                 }
	                 
	                 .features {
	                     padding: 3rem 4%;
	                 }

	                 .features-grid,
	                 .stats-grid,
	                 .partners-showcase,
	                 .steps-container {
	                     grid-template-columns: 1fr;
	                     gap: 1.2rem;
	                 }
	                 
	                 .feature-card {
	                     padding: 1.5rem;
	                     margin: 0;
	                     width: 100%;
	                     box-sizing: border-box;
	                 }

	                 .section-title {
	                     font-size: 1.8rem;
	                 }
	                 
	                 .section-subtitle {
	                     font-size: 1rem;
	                 }
	                 
	                 .features,
	                 .how-it-works {
	                     padding: 3rem 5%;
	                 }

	                 .footer-grid {
	                     grid-template-columns: 1fr;
	                     text-align: center;
	                 }
	                 
	                 .cta-section h2 {
	                     font-size: 1.8rem;
	                 }
	                 
	                 .app-buttons {
	                     flex-direction: column;
	                     align-items: center;
	                 }
	             }
             
             @media (max-width: 480px) {
                 header {
                     padding: 0.8rem 4%;
                 }
                 
                 .jzl-img {
                     height: 55px !important;
                 }
                 
                 .nav-translate-btn {
                     padding: 0.4rem 0.8rem;
                     font-size: 0.75rem;
                 }
                 
                 .nav-translate-btn span {
                     display: none;
                 }
                 
                 .section-title {
                     font-size: 1.6rem !important;
                 }
                 
                 .section-subtitle {
                     font-size: 0.95rem !important;
                 }
                 
                 .feature-card,
                 .step-card {
                     padding: 1.5rem !important;
                 }
                 
                 .features,
                 .how-it-works {
                     padding: 3rem 4% !important;
                 }
                 
                 .features-grid {
                     gap: 1rem;
                 }
             }
             
             .animate-on-scroll {
                 opacity: 0;
                 transform: translateY(40px);
                 transition: opacity 0.8s ease, transform 0.8s ease;
                 will-change: opacity, transform;
             }
             
             .animate-on-scroll.animated {
                 opacity: 1;
                 transform: translateY(0);
             }
             
             .animate-delay-1 { transition-delay: 0.1s; }
             .animate-delay-2 { transition-delay: 0.2s; }
             .animate-delay-3 { transition-delay: 0.3s; }
             .animate-delay-4 { transition-delay: 0.4s; }
             .animate-delay-5 { transition-delay: 0.5s; }
             .animate-delay-6 { transition-delay: 0.6s; }
             
             .animate-from-top {
                 opacity: 0;
                 transform: translateY(-30px);
                 transition: opacity 0.6s ease, transform 0.6s ease;
                 will-change: opacity, transform;
             }
             
             .animate-from-top.animated {
                 opacity: 1;
                 transform: translateY(0);
             }
             
             .animate-card {
                 opacity: 0;
                 transform: translateY(50px) scale(0.95);
                 transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
                 will-change: opacity, transform;
             }
             
             .animate-card.animated {
                 opacity: 1;
                 transform: translateY(0) scale(1);
             }
             
             .animate-fade {
                 opacity: 0;
                 transition: opacity 0.8s ease;
                 will-change: opacity;
             }
             
             .animate-fade.animated {
                 opacity: 1;
             }

	

/* ---- */

.custom-scrollbar-track {
    position: fixed;
    top: 0;
    left: 3px;
    width: 6px;
    height: 100%;
    z-index: 100000;
    pointer-events: none;
}
.custom-scrollbar-thumb {
    position: absolute;
    left: 0;
    width: 6px;
    border-radius: 10px;
    background: rgba(80, 44, 132, 0.45);
    opacity: 0;
    transition: opacity 0.35s ease, background 0.2s ease, width 0.2s ease;
    pointer-events: auto;
    cursor: pointer;
}
.custom-scrollbar-thumb.visible { opacity: 1; }
.custom-scrollbar-thumb:hover,
.custom-scrollbar-thumb.dragging {
    background: rgba(255, 120, 31, 0.75);
    width: 8px;
    left: -1px;
}

/* ---- */

.ld-1{fill:#fff;}.ld-2{fill:#ff781f;}

/* ---- */

#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #502C84 0%, #3a1d63 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: 350px;
    height: auto;
    animation: pulse-glow 1.5s ease-in-out infinite;
}

@media (max-width: 480px) {
    .loader-logo {
        width: 250px;
    }
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(255, 120, 31, 0.4));
    }
    50% {
        transform: scale(1.08);
        filter: drop-shadow(0 0 50px rgba(255, 120, 31, 0.9)) drop-shadow(0 0 80px rgba(255, 120, 31, 0.5));
    }
}

.loader-logo .ld-2 {
    animation: shimmer 1.5s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { fill: #ff781f; }
    50% { fill: #ffaa66; }
}

/* ---- */

.cls-1{fill:#ff781f;}.cls-2{fill:#502e83;}

/* ---- */

.wht-1{fill:#fff;}.wht-2{fill:#ff781f;}

/* ---- */

    .jzl-logo-container {
        display: flex;
        align-items: center;
        padding: 0;
        position: relative;
        height: 40px;
    }

    .jzl-img {
        height: 90px; 
        width: auto;
        display: block;
        transition: all 0.4s ease;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
    
   
    .jzl-logo-white {
        opacity: 1;
        visibility: visible;
        display: block;
    }
    
    .jzl-logo-colored {
        opacity: 0;
        visibility: hidden;
        display: none;
    }

    .jzl-img:hover {
        transform: translateY(-50%) scale(1.05);
    }

    .logo { display: none !important; }

/* ---- */

    .header-actions {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .btn-header-cta {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--secondary-orange);
        color: white;
        padding: 8px 16px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 0.9rem;
        text-decoration: none;
        white-space: nowrap;
        box-shadow: 0 6px 18px rgba(255,120,31,0.35);
        transition: all 0.3s ease;
    }

    .btn-header-cta:hover {
        background: #e66b1a;
        transform: translateY(-2px);
        box-shadow: 0 8px 22px rgba(255,120,31,0.45);
    }

    .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        font-size: 1.4rem;
        color: white;
        cursor: pointer;
        padding: 6px;
        align-items: center;
        justify-content: center;
    }

    header.scrolled .mobile-menu-btn { color: var(--primary-purple); }

    .mobile-menu {
        display: none;
        flex-direction: column;
        gap: 0.3rem;
        position: fixed;
        top: 80px;
        right: 0;
        left: 0;
        background: white;
        box-shadow: 0 10px 30px rgba(0,0,0,0.12);
        padding: 1.2rem 6%;
        z-index: 999;
    }

    .mobile-menu.active { display: flex; }

    .mobile-menu a {
        color: var(--dark-gray);
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        padding: 0.7rem 0;
        border-bottom: 1px solid #eee;
    }

    .mobile-menu .btn-header-cta {
        text-align: center;
        justify-content: center;
        border-bottom: none;
        margin: 0.4rem 0 0;
    }
    
    .translation-wrapper {
        display: inline-flex;
        align-items: center;
    }

    .nav-translate-btn {
        background-color: var(--light-gray); 
        color: var(--primary-purple);
        border: 2px solid transparent;
        padding: 8px 16px;
        border-radius: 50px; 
        font-family: 'IBM Plex Sans Arabic', sans-serif;
        font-weight: 700;
        font-size: 0.9rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
    }

    .nav-translate-btn i {
        font-size: 1rem;
    }

    .nav-translate-btn:hover {
        background-color: var(--primary-purple);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(80, 44, 180, 0.2);
    }
    
    @media (max-width: 768px) {
        .nav-links {
            display: none;
        }

        .header-actions .btn-header-cta {
            display: none;
        }

        .mobile-menu-btn {
            display: flex;
        }
        
        .jzl-img {
            height: 60px !important;
        }
        
        .nav-translate-btn {
            padding: 6px 12px;
            font-size: 0.8rem;
        }
        
        .header-actions {
            gap: 8px;
        }
    }
    
    @media (max-width: 480px) {
        .jzl-img {
            height: 50px !important;
        }
        
        .nav-translate-btn {
            padding: 5px 10px;
            font-size: 0.75rem;
        }
        
        .nav-translate-btn span {
            display: none;
        }
    }

    .skiptranslate, .goog-te-banner-frame, #goog-gt-tt { 
        display: none !important; 
    }
    body { top: 0px !important; }

    .goog-te-gadget { font-family: 'IBM Plex Sans Arabic', sans-serif !important; }

/* ---- */

.hero {
    background: linear-gradient(135deg, #502C84 0%, #3d2166 100%);
    padding: 8.5rem var(--container-pad) 6rem;
    position: relative;
    overflow: hidden;
}
.hero-grid-pattern {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.07;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,0.9) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.9) 1px, transparent 1px);
    background-size: 44px 44px;
}
.hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.hero-glow-orange {
    top: -10rem;
    left: -10rem;
    width: 32rem;
    height: 32rem;
    background: rgba(255,120,31,0.3);
    filter: blur(120px);
}
.hero-glow-cyan {
    bottom: 0;
    right: -8rem;
    width: 28rem;
    height: 28rem;
    background: rgba(255,255,255,0.1);
    filter: blur(120px);
}
.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
    align-items: center;
}
.hero-text {
    text-align: right;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    color: var(--secondary-cyan);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.5rem 1.1rem;
    border-radius: 50px;
    margin-bottom: 1.2rem;
    backdrop-filter: blur(6px);
}
.hero-text h1 {
    font-size: 2.9rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.2rem;
    line-height: 1.25;
}
.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    font-weight: 400;
    margin-bottom: 2rem;
}
.hero-cta {
    display: flex;
    justify-content: flex-start;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
}

.hero-banner {
    position: relative;
    width: 100%;
    height: 420px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.15);
    animation: heroFloat 4.5s ease-in-out infinite;
}
@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}
.banner-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}
.banner-slide.active { opacity: 1; }
.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.35), rgba(0,0,0,0) 40%);
    pointer-events: none;
}
.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: all 0.3s ease;
}
.banner-arrow:hover { background: var(--secondary-orange); }
.banner-prev { right: 20px; }
.banner-next { left: 20px; }
.banner-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}
.banner-dots .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}
.banner-dots .dot.active {
    background: var(--secondary-orange);
    width: 22px;
    border-radius: 10px;
}

.hero-rating-card {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    padding: 1rem 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    z-index: 6;
    animation: heroFloat 4.5s ease-in-out infinite;
    animation-delay: 0.4s;
}
.hero-rating-badge {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--light-purple);
    color: var(--primary-purple);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hero-rating-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin: 0;
}
.hero-rating-sub {
    font-size: 0.78rem;
    color: var(--medium-gray);
    margin: 2px 0 0;
}

@media (max-width: 991px) {
    .hero { padding: 7rem 6% 3rem; }
    .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-text { text-align: center; }
    .hero-cta { justify-content: center; }
    .hero-text h1 { font-size: 2.2rem; }
    .hero-banner { height: 280px; animation: none; }
    .hero-rating-card { animation: none; }
}

/* ---- */

.testimonials-section {
    padding: 3.5rem var(--container-pad);
    background-color: #f8f9fa; 
    direction: rtl;
    position: relative;
}

.section-header { text-align: center; margin-bottom: 2rem; }
.main-title { color: var(--primary-purple); font-size: 1.9rem; font-weight: 800; margin-bottom: 8px; }
.sub-title { color: var(--medium-gray); font-size: 0.95rem; }

.slider-container { position: relative; width: 100%; margin: 0 auto; }

.slider-viewport {
    overflow: hidden;
    padding: 20px 10px; 
}

.slider-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}


.testimonial-card {
    flex: 0 0 calc(33.333% - 1rem); 
    min-width: 260px;
    background: #fff;
    padding: 1.6rem;
    border-radius: 16px;
    border: 1px solid transparent;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    will-change: transform;
}

.testimonial-card:hover {
    transform: translateY(-6px); 
    box-shadow: 0 12px 28px rgba(74, 49, 180, 0.15);
    border-color: var(--primary-purple);
}

.stars { color: #FF9500; margin-bottom: 0.7rem; font-size: 0.8rem; }
.comment { color: #444; line-height: 1.6; font-style: italic; margin-bottom: 1rem; font-size: 0.92rem; }
.client-meta h4 { color: var(--primary-purple); margin-bottom: 4px; }
.client-meta span { color: var(--medium-gray); font-size: 0.85rem; }

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    color: var(--primary-purple);
    z-index: 10;
    cursor: pointer;
    transition: 0.3s;
}
.nav-btn:hover { background: var(--primary-purple); color: #fff; }
.prev { right: -55px; }
.next { left: -55px; }

@media (max-width: 1024px) { .testimonial-card { flex: 0 0 calc(50% - 1rem); } .prev, .next { display: none; } }
@media (max-width: 768px) { .testimonial-card { flex: 0 0 100%; } }

/* ---- */

    .footer-logo-box {
        margin-bottom: 25px; 
        display: block;
    }

    .footer-img-white {
        height: 40px; 
        width: auto;
        display: block;
        
        filter: brightness(0) invert(1);
        
        transition: opacity 0.3s ease;
    }

    .footer-img-white:hover {
        opacity: 0.8;
        cursor: pointer;
    }

    .footer-about h3 {
        display: none !important;
    }

/* ---- */

    .back-to-top {
        position: fixed;
        bottom: 30px;
        left: 30px;
        width: 50px;
        height: 50px;
        background: var(--primary-purple);
        color: white;
        border: none;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        box-shadow: 0 4px 15px rgba(80, 44, 132, 0.4);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 9999;
    }
    
    .back-to-top:hover {
        background: var(--secondary-orange);
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(255, 120, 31, 0.4);
    }
    
    .back-to-top.show {
        opacity: 1;
        visibility: visible;
    }
    
