 
        :root {
            --saudi-green: #00544d;
            --saudi-green-light: #008f7a;
            --saudi-green-lighter: #e6f7f4;
            --gold: #d4af37;
            --gold-light: #f4e19c;
        }
        
        * {
            font-family: 'IBM Plex Sans Arabic', sans-serif;
        }
        
        body {
            font-family: 'IBM Plex Sans Arabic', sans-serif;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'IBM Plex Sans Arabic', sans-serif;
            font-weight: 600;
        }
        
        p {
            font-family: 'IBM Plex Sans Arabic', sans-serif;
            line-height: 1.6;
        }
        
        li a span {
            font-family: 'IBM Plex Sans Arabic', sans-serif;
        }
        
        .saudi-green { color: var(--saudi-green); }
        .bg-saudi-green { background-color: var(--saudi-green); }
        .bg-saudi-green-light { background-color: var(--saudi-green-light); }
        .bg-saudi-green-lighter { background-color: var(--saudi-green-lighter); }
        .text-gold { color: var(--gold); }
        .bg-gold { background-color: var(--gold); }
        .border-gold { border-color: var(--gold); }
        
        .hero-pattern {
            background-color: #00544d;
            background-size: cover;
            background-position: center;    
            background-repeat: no-repeat;
          
            /* background-image: 
                radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(0, 84, 77, 0.1) 0%, transparent 50%),
                linear-gradient(45deg, transparent 40%, rgba(212, 175, 55, 0.05) 50%, transparent 60%); */
        }
        
       
        
        .hover-lift {
            transition: all 0.3s ease;
        }
        
        .hover-lift:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 84, 77, 0.15);
        }
        
        .gold-gradient {
            background: linear-gradient(135deg, var(--gold) 0%, #b8941f 100%);
        }
        
        .service-card {
            background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
            border: 1px solid rgba(0, 84, 77, 0.1);
            transition: all 0.4s ease;
        }
        
        .service-card:hover {
            border-color: var(--gold);
            box-shadow: 0 15px 35px rgba(0, 84, 77, 0.1);
        }
        .navbar-scroll {
            background: #00544d;
             
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        .navbar-scroll-all  {
            color: var(--saudi-green);
        }
        
       
        .navbar
        .partner-logo {
            filter: grayscale(1) opacity(0.7);
            transition: all 0.3s ease;
        }
        
        .partner-logo:hover {
            filter: grayscale(0) opacity(1);
            transform: scale(1.05);
        }
        
        /* Language Toggle Styles */
        .language-toggle {
            position: relative;
        }
        
        .language-toggle button {
            position: relative;
            overflow: hidden;
        }
        
        .language-toggle button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }
        
        .language-toggle button:hover::before {
            left: 100%;
        }
        
        .language-toggle #lang-dropdown {
            animation: fadeInDown 0.3s ease-out;
        }
        
        .language-toggle #lang-dropdown.show {
            display: block !important;
        }
        
        .language-toggle #lang-arrow.rotate {
            transform: rotate(180deg);
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Mobile Language Toggle */
        .mobile-lang-toggle {
            background: linear-gradient(135deg, var(--saudi-green-light) 0%, var(--saudi-green) 100%);
        }
        
        .mobile-lang-toggle a {
            position: relative;
            overflow: hidden;
        }
        
        .mobile-lang-toggle a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }
        
        .mobile-lang-toggle a:hover::before {
            left: 100%;
        }
        
        /* Responsive adjustments */
        @media (max-width: 1024px) {
            .language-toggle {
                width: 100%;
            }
            
            .language-toggle button {
                width: 100%;
                justify-content: center;
            }
        }
        
        @media (max-width: 640px) {
            .mobile-lang-toggle a {
                font-size: 0.875rem;
                padding: 0.75rem 1rem;
            }
        }

        .contact-form {
            background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--saudi-green) 0%, var(--saudi-green-light) 100%);
            color: white;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 84, 77, 0.3);
        }
        
        .btn-gold {
            background: linear-gradient(135deg, var(--gold) 0%, #b8941f 100%);
            color: white;
            transition: all 0.3s ease;
        }
        
        .btn-gold:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
        }
        
        @media (max-width: 768px) {
            .hero-text {
                font-size: 1.5rem;
            }
        }
        
        .floating-animation {
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .fade-in-up.active {
            opacity: 1;
            transform: translateY(0);
        }
   


.banner-1{
    background-image: url('./asstes/img/sign.png');
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;
}
.banner-2{
  background-image: url('./asstes/img/sign.png');
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;
    
}

        /* RTL/LTR Layout Support */
        .rtl {
            direction: rtl;
        }
        
        .ltr {
            direction: ltr;
        }
        
        /* Font adjustments for different languages */
        .lang-ar {
            font-family: 'IBM Plex Sans Arabic', sans-serif;
        }
        
        .lang-en {
            font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        /* Spacing adjustments for RTL/LTR */
        .rtl .space-x-3 > :not([hidden]) ~ :not([hidden]) {
            margin-right: 0.75rem;
            margin-left: 0;
        }
        
        .ltr .space-x-3 > :not([hidden]) ~ :not([hidden]) {
            margin-left: 0.75rem;
            margin-right: 0;
        }
        
        .rtl .space-x-4 > :not([hidden]) ~ :not([hidden]) {
            margin-right: 1rem;
            margin-left: 0;
        }
        
        .ltr .space-x-4 > :not([hidden]) ~ :not([hidden]) {
            margin-left: 1rem;
            margin-right: 0;
        }
        
        .rtl .space-x-8 > :not([hidden]) ~ :not([hidden]) {
            margin-right: 2rem;
            margin-left: 0;
        }
        
        .ltr .space-x-8 > :not([hidden]) ~ :not([hidden]) {
            margin-left: 2rem;
            margin-right: 0;
        }
        
        /* Icon positioning for RTL/LTR */
        .rtl .ml-2 {
            margin-right: 0.5rem;
            margin-left: 0;
        }
        
        .ltr .ml-2 {
            margin-left: 0.5rem;
            margin-right: 0;
        }
        
        .rtl .mr-2 {
            margin-left: 0.5rem;
            margin-right: 0;
        }
        
        .ltr .mr-2 {
            margin-right: 0.5rem;
            margin-left: 0;
        }
        
        /* Text alignment for different languages */
        .rtl .text-right {
            text-align: right;
        }
        
        .ltr .text-left {
            text-align: left;
        }
        
        .rtl .text-center {
            text-align: center;
        }
        
        .ltr .text-center {
            text-align: center;
        }
        
        /* Flexbox direction adjustments */
        .rtl .flex-row-reverse {
            flex-direction: row-reverse;
        }
        
        .ltr .flex-row {
            flex-direction: row;
        }
        
        /* Border radius adjustments for RTL */
        .rtl .rounded-l-lg {
            border-top-right-radius: 0.5rem;
            border-bottom-right-radius: 0.5rem;
            border-top-left-radius: 0;
            border-bottom-left-radius: 0;
        }
        
        .rtl .rounded-r-lg {
            border-top-left-radius: 0.5rem;
            border-bottom-left-radius: 0.5rem;
            border-top-right-radius: 0;
            border-bottom-right-radius: 0;
        }
        
        .ltr .rounded-l-lg {
            border-top-left-radius: 0.5rem;
            border-bottom-left-radius: 0.5rem;
            border-top-right-radius: 0;
            border-bottom-right-radius: 0;
        }
        
        .ltr .rounded-r-lg {
            border-top-right-radius: 0.5rem;
            border-bottom-right-radius: 0.5rem;
            border-top-left-radius: 0;
            border-bottom-left-radius: 0;
        }
        
        /* Smooth transitions for language switching */
        * {
            transition: margin 0.3s ease, padding 0.3s ease, text-align 0.3s ease;
        }
        
        /* Hero section adjustments */
        .rtl .hero-pattern {
            background-position: right center;
        }
        
        .ltr .hero-pattern {
            background-position: left center;
        }
        
        /* Navigation adjustments */
        .rtl .space-x-reverse > :not([hidden]) ~ :not([hidden]) {
            margin-right: var(--tw-space-x-reverse);
            margin-left: calc(var(--tw-space-x-reverse) * 0);
        }
        
        .ltr .space-x-reverse > :not([hidden]) ~ :not([hidden]) {
            margin-left: var(--tw-space-x-reverse);
            margin-right: calc(var(--tw-space-x-reverse) * 0);
        }
        .language-switcher {
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .lang-btn {
            position: relative;
            overflow: hidden;
        }
        
        .lang-btn.active,
        .lang-btn.selected {
            background: rgba(255, 255, 255, 0.3);
            color: #ffffff;
            font-weight: 700;
        }
        
        .lang-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }
        
        .lang-btn:hover:before {
            left: 100%;
        }
        
        .lang-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
        
        /* Premium Language Toggle Button Styles - Enhanced with Glass-morphism */
        .language-toggle-container {
            position: relative;
            z-index: 1;
            filter: drop-shadow(0 8px 32px rgba(0, 84, 77, 0.15));
        }
        
        .language-toggle {
            position: relative;
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.25) 0%, 
                rgba(255, 255, 255, 0.1) 50%, 
                rgba(255, 255, 255, 0.05) 100%);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 50px;
            padding: 6px;
            box-shadow: 
                0 8px 32px rgba(0, 84, 77, 0.15),
                0 4px 16px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.6),
                inset 0 -1px 0 rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .language-toggle:hover {
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.35) 0%, 
                rgba(255, 255, 255, 0.2) 50%, 
                rgba(255, 255, 255, 0.1) 100%);
            border-color: rgba(255, 255, 255, 0.4);
            box-shadow: 
                0 12px 40px rgba(0, 84, 77, 0.2),
                0 6px 20px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.7),
                inset 0 -1px 0 rgba(0, 0, 0, 0.1);
        }
        
        .lang-toggle-btn {
            background: transparent;
            color: rgba(255, 255, 255, 0.9);
            border: none;
            cursor: pointer;
            z-index: 2;
            position: relative;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border-radius: 50px;
            overflow: hidden;
        }
        
        .lang-toggle-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(255, 255, 255, 0.2), 
                transparent);
            transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .lang-toggle-btn:hover {
            color: rgba(255, 255, 255, 1);
            transform: scale(1.05) translateY(-1px);
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }
        
        .lang-toggle-btn:hover::before {
            left: 100%;
        }
        
        .lang-toggle-btn.active {
            color: #ffffff;
            font-weight: 700;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
            transform: scale(1.02);
        }
        
        .lang-toggle-btn:not(.active) {
            color: rgba(255, 255, 255, 0.7);
            font-weight: 500;
        }
        
        .toggle-slider {
            background: linear-gradient(135deg, 
                #ffffff 0%, 
                #f8f9fa 25%,
                #ffffff 50%,
                #f1f3f4 100%);
            border-radius: 50px;
            box-shadow: 
                0 4px 12px rgba(0, 84, 77, 0.2),
                0 2px 6px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.9),
                inset 0 -1px 0 rgba(0, 0, 0, 0.05),
                0 0 0 1px rgba(0, 84, 77, 0.1);
            z-index: 1;
            pointer-events: none;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        /* Arabic active state - slider on left (default position) */
        .rtl .toggle-slider,
        [data-current-lang="ar"] .toggle-slider {
            transform: translateX(0) scale(1);
            background: linear-gradient(135deg, 
                #fbbf24 0%, 
                #f59e0b 25%,
                #fbbf24 50%,
                #d97706 100%);
            box-shadow: 
                0 4px 12px rgba(251, 191, 36, 0.4),
                0 2px 6px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.9),
                inset 0 -1px 0 rgba(251, 191, 36, 0.2);
        }
        
        /* English active state - slider on right */
        .ltr .toggle-slider,
        [data-current-lang="en"] .toggle-slider {
            transform: translateX(100%) scale(1);
            background: linear-gradient(135deg, 
                #00544d 0%, 
                #008f7a 25%,
                #00544d 50%,
                #004a42 100%);
            box-shadow: 
                0 4px 12px rgba(0, 84, 77, 0.4),
                0 2px 6px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.9),
                inset 0 -1px 0 rgba(0, 84, 77, 0.2);
        }
        
        /* Pulse animation on language change - enhanced */
        .toggle-slider.changing {
            animation: togglePulse 0.6s ease-in-out;
        }
        
        @keyframes togglePulse {
            0% {
                transform: scale(1);
                box-shadow: 
                    0 4px 12px rgba(0, 84, 77, 0.2),
                    0 2px 6px rgba(0, 0, 0, 0.15);
            }
            25% {
                transform: scale(1.1);
                box-shadow: 
                    0 6px 16px rgba(251, 191, 36, 0.4),
                    0 3px 8px rgba(0, 0, 0, 0.2),
                    0 0 25px rgba(251, 191, 36, 0.3);
            }
            75% {
                transform: scale(1.05);
                box-shadow: 
                    0 8px 20px rgba(0, 84, 77, 0.4),
                    0 4px 10px rgba(0, 0, 0, 0.2),
                    0 0 25px rgba(0, 84, 77, 0.3);
            }
            100% {
                transform: scale(1);
                box-shadow: 
                    0 4px 12px rgba(0, 84, 77, 0.2),
                    0 2px 6px rgba(0, 0, 0, 0.15);
            }
        }
        #language-loader {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: linear-gradient(135deg, 
                rgba(0, 84, 77, 0.95) 0%, 
                rgba(0, 84, 77, 0.98) 100%);
            backdrop-filter: blur(20px);
            color: white;
            padding: 24px 36px;
            border-radius: 16px;
            display: none;
            align-items: center;
            gap: 18px;
            z-index: 9999;
            box-shadow: 
                0 20px 40px rgba(0, 84, 77, 0.3),
                0 8px 16px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        
        .loader-spinner {
            width: 24px;
            height: 24px;
            border: 3px solid rgba(255, 255, 255, 0.2);
            border-top: 3px solid #ffffff;
            border-right: 3px solid rgba(212, 175, 55, 0.8);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        @keyframes rippleEffect {
            0% {
                width: 0;
                height: 0;
                opacity: 1;
            }
            100% {
                width: 200px;
                height: 200px;
                opacity: 0;
            }
        }
        
        @keyframes activePulse {
            0% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
            }
            50% {
                transform: scale(1.05);
                box-shadow: 0 0 0 10px rgba(212, 175, 55, 0.1);
            }
            100% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
            }
        }
        
        /* RTL/LTR specific styles */
        .rtl .lang-btn {
            margin-left: 2px;
            margin-right: 0;
        }
        
        .ltr .lang-btn {
            margin-right: 2px;
            margin-left: 0;
        }
        
        /* Mobile language switcher - Enhanced */
        @media (max-width: 768px) {
            .language-switcher {
                margin-bottom: 1rem;
            }
            
            .language-toggle-container {
                filter: drop-shadow(0 6px 24px rgba(0, 84, 77, 0.2));
            }
            
            .language-toggle {
                padding: 4px;
                background: linear-gradient(135deg, 
                    rgba(255, 255, 255, 0.3) 0%, 
                    rgba(255, 255, 255, 0.15) 100%);
            }
            
            .lang-toggle-btn {
                padding: 0.75rem 1rem;
                font-size: 0.875rem;
                min-height: 44px; /* Better touch target */
                min-width: 60px;
            }
            
            .toggle-slider {
                min-height: 40px;
            }
            
            /* Enhanced touch feedback */
            .lang-toggle-btn:active {
                transform: scale(0.95);
                transition: transform 0.1s ease;
            }
            
            /* Mobile-specific loader */
            #language-loader {
                padding: 20px 28px;
                border-radius: 12px;
                font-size: 0.875rem;
            }
            
            .loader-spinner {
                width: 20px;
                height: 20px;
                border-width: 2px;
            }
        }
        
        /* Tablet specific adjustments */
        @media (min-width: 769px) and (max-width: 1024px) {
            .language-toggle {
                padding: 5px;
            }
            
            .lang-toggle-btn {
                padding: 8px 12px;
                font-size: 0.9rem;
            }
        }
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.partners-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    overflow: hidden;
    position: relative;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(0, 128, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 3rem;
    font-weight: bold;
    color: #006400;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.title-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 150px;
    margin: 40px 0;
}

.slider-track {
    display: flex;
    align-items: center;
    height: 100%;
    animation: slideRTL 30s linear infinite;
    width: calc(200% + 100px);
}

.slider-track:hover {
    animation-play-state: paused;
}

@keyframes slideRTL {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-item {
    flex: 0 0 200px;
    height: 120px;
    margin: 0 15px;
    background: white;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}
.partner-item img {
    width: 100%;
    height: auto;
}

.partner-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 128, 0, 0.05), rgba(255, 215, 0, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    border-color: #FFD700;
}

.partner-item:hover::before {
    opacity: 1;
}

.partner-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.partner-item:hover .partner-logo {
    transform: scale(1.1);
}

.partner-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    position: relative;
    z-index: 1;
}

.controls {
    text-align: center;
    margin-top: 30px;
}

.control-btn {
    background: linear-gradient(45deg, #006400, #228B22);
    color: white;
    border: none;
    padding: 12px 25px;
    margin: 0 10px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,100,0,0.3);
}

.control-btn:hover {
    background: linear-gradient(45deg, #228B22, #32CD32);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,100,0,0.4);
}

.control-btn:active {
    transform: translateY(0);
}

.speed-indicator {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #666;
}

.fade-edges {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    pointer-events: none;
    z-index: 1;
}

.fade-left {
    left: 0;
    background: linear-gradient(to right, rgba(248,249,250,1), rgba(248,249,250,0));
}

.fade-right {
    right: 0;
    background: linear-gradient(to left, rgba(248,249,250,1), rgba(248,249,250,0));
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .partner-item {
        flex: 0 0 150px;
        height: 100px;
        margin: 0 10px;
        padding: 15px;
    }
    
    .partner-logo {
        width: 40px;
        height: 40px;
    }
    
    .partner-name {
        font-size: 0.8rem;
    }
    
    .control-btn {
        padding: 10px 20px;
        margin: 5px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-description {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .partner-item {
        flex: 0 0 120px;
        height: 80px;
        margin: 0 8px;
        padding: 10px;
    }
    
    .partner-logo {
        width: 30px;
        height: 30px;
    }
    
    .partner-name {
        font-size: 0.7rem;
    }
    
    .controls {
        padding: 0 20px;
    }
    
    .control-btn {
        padding: 8px 15px;
        margin: 3px;
        font-size: 0.8rem;
    }
}

/* Animation Performance Optimizations */
.slider-track {
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
}

.partner-item {
    will-change: transform;
    backface-visibility: hidden;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .slider-track {
        animation-duration: 120s;
    }
    
    .partner-item {
        transition-duration: 0.1s;
    }
}

/* Print Styles */
@media print {
    .controls {
        display: none;
    }
    
    .slider-track {
        animation: none;
        flex-wrap: wrap;
        height: auto;
    }
    
    .partner-item {
        margin: 10px;
        break-inside: avoid;
    }
}

        .custom-primary {
            background-color: #00544d;
        }

        .custom-primary-light {
            background-color: #006e5f;
        }

        .custom-gradient {
            background: linear-gradient(135deg, #00544d 0%, #006e5f 100%);
        }

        .custom-gold {
            background: linear-gradient(135deg, #d4af37 0%, #f4e06d 100%);
        }

        .custom-purple {
            background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
        }

        .card-hover {
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 84, 77, 0.15);
        }

        /* Equal height cards grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2rem;
            align-items: stretch;
        }

        /* Card content layout */
        .card-content {
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .card-image-container {
            flex-shrink: 0;
        }

        .card-text-content {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .card-services-list {
            flex: 1;
            margin-bottom: 2rem;
        }

        .card-buttons {
            margin-top: auto;
        }

        @media (max-width: 768px) {
            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .services-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }

        .badge {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .bullet-point {
            position: relative;
            padding-left: 1.5em;
            padding-right: 1.5em;
            /* Ensure space on both sides for LTR and RTL */
        }

        .bullet-point::before {
            content: '•';
            position: absolute;
            left: 0;
            right: auto;
            /* For RTL, override with right:0; left:auto; if needed */
            color: #00544d;
            font-weight: bold;
            font-size: 1.2em;
            top: 0.1em;
            /* Vertically align with text */
        }

        [dir="rtl"] .bullet-point {
            padding-right: 1.5em;
            padding-left: 1.5em;
        }
        [dir="rtl"] .bullet-point::before {
            right: 0;
            left: auto;
        }

        /* Super Modern Partners Section Styles */
        .partners-mega-section {
            position: relative;
            padding: 120px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            overflow: hidden;
        }

        .partners-mega-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
            z-index: 1;
        }

        .partners-hero-header {
            position: relative;
            text-align: center;
            margin-bottom: 20px;
            z-index: 2;
        }

        .partners-title-container {
            position: relative;
            display: inline-block;
            margin-bottom: 30px;
        }

        .partners-title-backdrop {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(1.2);
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(0, 84, 77, 0.05) 0%, rgba(0, 84, 77, 0.02) 50%, transparent 100%);
            border-radius: 50%;
            animation: pulseGlow 4s ease-in-out infinite;
        }

        .partners-mega-title {
            font-size: 4rem;
            font-weight: 900;
            color: #00544d;
            text-shadow: 0 4px 20px rgba(0, 84, 77, 0.2);
            margin: 0;
            position: relative;
            z-index: 3;
            background: linear-gradient(135deg, #00544d 0%, #006e5f 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: titleShine 3s ease-in-out infinite;
        }
        .partners-mega-title-2 {
            font-size: 2rem;
            font-weight: 500;
            color: #00544d;
            text-shadow: 0 4px 20px rgba(0, 84, 77, 0.2);
            margin: 0;
            position: relative;
            z-index: 3;
            background: linear-gradient(135deg, #00544d 0%, #006e5f 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: titleShine 3s ease-in-out infinite;
        }


        .partners-title-glow {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.3) 50%, transparent 70%);
            animation: glowPass 6s ease-in-out infinite;
            border-radius: 20px;
        }

        .partners-subtitle-container {
            position: relative;
            max-width: 600px;
            margin: 0 auto;
        }

        .partners-description {
            font-size: 1.3rem;
            color: #64748b;
            line-height: 1.8;
            margin: 0 0 20px 0;
            opacity: 0;
            animation: fadeInUp 1s ease-out 0.5s forwards;
        }

        .partners-description-line {
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #d4af37, #f4e06d);
            margin: 0 auto;
            border-radius: 2px;
            opacity: 0;
            animation: expandLine 1s ease-out 1s forwards;
        }

        .partners-slider-wrapper {
            position: relative;
            max-width: 100%;
            margin: 0 auto;
            overflow: hidden;
            z-index: 2;
        }

        .partners-gradient-overlay {
            position: absolute;
            top: 0;
            bottom: 0;
            width: 150px;
            z-index: 10;
            pointer-events: none;
        }



        .partners-infinite-track {
            display: flex;
            animation: infiniteSlide 40s linear infinite;
            width: max-content;
            gap: 20px;
            padding: 40px 0;
        }






        .partner-super-logo {
            width: 150px;
            height: 150px;
            object-fit: contain;
            filter: drop-shadow(0 4px 12px rgba(0, 84, 77, 0.1));
            transition: all 0.4s ease;
        }

        .partner-super-item:hover .partner-super-logo {
            transform: scale(1.1);
            filter: drop-shadow(0 6px 20px rgba(0, 84, 77, 0.2));
        }

        .partner-image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 84, 77, 0.02) 0%, rgba(212, 175, 55, 0.02) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .partner-super-item:hover .partner-image-overlay {
            opacity: 1;
        }

        .partner-info {
            position: relative;
        }

        .partner-super-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: #1e293b;
            margin: 0 0 12px;
            transition: color 0.3s ease;
        }

        .partner-super-item:hover .partner-super-name {
            color: #00544d;
        }

        .partner-status-indicator {
            width: 8px;
            height: 8px;
            background: linear-gradient(135deg, #10b981, #34d399);
            border-radius: 50%;
            margin: 0 auto;
            position: relative;
            animation: statusPulse 2s ease-in-out infinite;
        }

        .partner-status-indicator::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 16px;
            height: 16px;
            border: 2px solid rgba(16, 185, 129, 0.3);
            border-radius: 50%;
            animation: rippleEffect 2s ease-in-out infinite;
        }

        .partners-progress-indicator {
            position: relative;
            height: 4px;
            background: rgba(0, 84, 77, 0.1);
            margin: 60px auto 0;
            max-width: 400px;
            border-radius: 2px;
            overflow: hidden;
        }

        .progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #00544d, #d4af37, #00544d);
            background-size: 200% 100%;
            animation: progressFlow 3s ease-in-out infinite;
            border-radius: 2px;
        }

        /* Keyframe Animations */
        @keyframes infiniteSlide {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        @keyframes pulseGlow {

            0%,
            100% {
                opacity: 0.3;
                transform: translate(-50%, -50%) scale(1.2);
            }

            50% {
                opacity: 0.5;
                transform: translate(-50%, -50%) scale(1.4);
            }
        }

        @keyframes titleShine {

            0%,
            100% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }
        }

        @keyframes glowPass {

            0%,
            100% {
                opacity: 0;
                transform: translateX(-100%);
            }

            50% {
                opacity: 1;
                transform: translateX(100%);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes expandLine {
            from {
                opacity: 0;
                width: 0;
            }

            to {
                opacity: 1;
                width: 100px;
            }
        }

        @keyframes rotateGlow {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        @keyframes statusPulse {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: 0.8;
                transform: scale(1.2);
            }
        }

        @keyframes rippleEffect {
            0% {
                opacity: 1;
                transform: translate(-50%, -50%) scale(0.5);
            }

            100% {
                opacity: 0;
                transform: translate(-50%, -50%) scale(2);
            }
        }

        @keyframes progressFlow {

            0%,
            100% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }
        }

        /* Customer Rates Section Styles */
        #ratesScrollContainer {
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        #ratesScrollContainer::-webkit-scrollbar {
            display: none;
        }

        .rate-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .rate-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 84, 77, 0.1);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .partners-mega-section {
                padding: 80px 20px;
            }

            .partners-mega-title {
                font-size: 2.5rem;
            }

            .partners-description {
                font-size: 1.1rem;
                padding: 0 20px;
            }

            .partner-super-item {

                padding: 10px;
            }

            .partners-infinite-track {
                gap: 20px;
            }

            .partners-gradient-overlay {
                width: 80px;
            }
        }

        @media (max-width: 480px) {
            .partners-mega-title {
                font-size: 2rem;
            }

            .partners-infinite-track {
                gap: 15px;
            }

            .partner-super-logo {
                width: 130px;
                height: 130px;
            }
        }
        
        /* Enhanced Dynamic Content Switching Styles */
        .dynamic-content-transition {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .content-fade-out {
            opacity: 0;
            transform: translateY(15px) scale(0.98);
            filter: blur(2px);
            backdrop-filter: blur(10px);
        }
        
        .content-fade-in {
            opacity: 1;
            transform: translateY(0) scale(1);
            filter: blur(0px);
            backdrop-filter: none;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        /* Premium Transition Overlay */
        #transition-overlay {
            background: linear-gradient(135deg, 
                rgba(0, 84, 77, 0.05) 0%, 
                rgba(251, 191, 36, 0.05) 50%, 
                rgba(0, 84, 77, 0.05) 100%);
            backdrop-filter: blur(8px) saturate(180%);
            -webkit-backdrop-filter: blur(8px) saturate(180%);
        }
        
        /* Dynamic Section Styles */
        .dynamic-section {
            transition: all 0.3s ease;
        }
        
        .dynamic-section.updating {
            opacity: 0.7;
            transform: scale(0.98);
        }
        
        /* Dynamic List Items */
        .dynamic-list-item {
            opacity: 0;
            transform: translateX(-20px);
            animation: slideInFromLeft 0.4s ease forwards;
        }
        
        .dynamic-list-item:nth-child(1) { animation-delay: 0.1s; }
        .dynamic-list-item:nth-child(2) { animation-delay: 0.2s; }
        .dynamic-list-item:nth-child(3) { animation-delay: 0.3s; }
        .dynamic-list-item:nth-child(4) { animation-delay: 0.4s; }
        .dynamic-list-item:nth-child(5) { animation-delay: 0.5s; }
        
        @keyframes slideInFromLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        /* Testimonial Card Styles */
        .testimonial-card {
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.9) 0%, 
                rgba(248, 250, 252, 0.9) 100%);
            border: 1px solid rgba(0, 84, 77, 0.1);
            backdrop-filter: blur(10px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 84, 77, 0.15);
            border-color: rgba(251, 191, 36, 0.3);
        }
        
        .testimonial-avatar {
            background: linear-gradient(135deg, 
                var(--saudi-green) 0%, 
                var(--gold) 100%);
            box-shadow: 0 4px 12px rgba(0, 84, 77, 0.3);
        }
        
        /* Form Enhancement Styles */
        .dynamic-form {
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.95) 0%, 
                rgba(248, 250, 252, 0.95) 100%);
            backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 
                0 8px 32px rgba(0, 84, 77, 0.15),
                0 4px 16px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
        }
        
        .dynamic-form input,
        .dynamic-form textarea,
        .dynamic-form select {
            background: rgba(255, 255, 255, 0.7);
            border: 2px solid rgba(0, 84, 77, 0.1);
            border-radius: 12px;
            padding: 12px 16px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
        }
        
        .dynamic-form input:focus,
        .dynamic-form textarea:focus,
        .dynamic-form select:focus {
            background: rgba(255, 255, 255, 0.9);
            border-color: var(--gold);
            box-shadow: 
                0 0 0 3px rgba(251, 191, 36, 0.1),
                0 4px 12px rgba(0, 84, 77, 0.15);
            transform: translateY(-1px);
        }
        
        /* Loading States */
        .loading-shimmer {
            background: linear-gradient(90deg, 
                rgba(255, 255, 255, 0.1) 25%, 
                rgba(255, 255, 255, 0.3) 50%, 
                rgba(255, 255, 255, 0.1) 75%);
            background-size: 200% 100%;
            animation: shimmer 2s infinite;
        }
        
        @keyframes shimmer {
            0% { background-position: -200% 0; }
            100% { background-position: 200% 0; }
        }
i{
    padding-inline: 0.3em;
}